Files
query-orchestration/internal/serviceconfig/queue/documentclean/config.go
T

14 lines
275 B
Go
Raw Normal View History

package documentclean
type DocCleanConfig struct {
DocumentCleanURL string `env:"DOCUMENT_CLEAN_URL,required,notEmpty"`
}
func (c *DocCleanConfig) GetDocumentCleanURL() string {
return c.DocumentCleanURL
}
type ConfigProvider interface {
GetDocumentCleanURL() string
}