2025-02-12 19:00:25 +00:00
|
|
|
package documentinit
|
|
|
|
|
|
2025-03-17 18:14:15 +00:00
|
|
|
const EnvName = "DOCUMENT_INIT_URL"
|
|
|
|
|
|
2025-02-12 19:00:25 +00:00
|
|
|
type DocInitConfig struct {
|
|
|
|
|
DocInitURL string `env:"DOCUMENT_INIT_URL,required,notEmpty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *DocInitConfig) GetDocInitURL() string {
|
|
|
|
|
return c.DocInitURL
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ConfigProvider interface {
|
|
|
|
|
GetDocInitURL() string
|
|
|
|
|
}
|