2025-02-03 17:30:50 +00:00
|
|
|
package documentclean
|
|
|
|
|
|
2025-03-17 18:14:15 +00:00
|
|
|
const EnvName = "DOCUMENT_CLEAN_URL"
|
|
|
|
|
|
2025-02-03 17:30:50 +00:00
|
|
|
type DocCleanConfig struct {
|
|
|
|
|
DocumentCleanURL string `env:"DOCUMENT_CLEAN_URL,required,notEmpty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *DocCleanConfig) GetDocumentCleanURL() string {
|
|
|
|
|
return c.DocumentCleanURL
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ConfigProvider interface {
|
|
|
|
|
GetDocumentCleanURL() string
|
|
|
|
|
}
|