90353d8161
Doc Clean Structure * outline * isdocclean * placeholder for clean log * versionplustesting * versionplustesting * testspassed
14 lines
267 B
Go
14 lines
267 B
Go
package documenttext
|
|
|
|
type DocTextConfig struct {
|
|
DocumentTextURL string `env:"DOCUMENT_TEXT_URL,required,notEmpty"`
|
|
}
|
|
|
|
func (c *DocTextConfig) GetDocumentTextURL() string {
|
|
return c.DocumentTextURL
|
|
}
|
|
|
|
type ConfigProvider interface {
|
|
GetDocumentTextURL() string
|
|
}
|