2025-02-12 19:00:25 +00:00
|
|
|
package documentsync
|
|
|
|
|
|
2025-03-17 18:14:15 +00:00
|
|
|
const EnvName = "DOCUMENT_SYNC_URL"
|
|
|
|
|
|
2025-02-12 19:00:25 +00:00
|
|
|
type DocSyncConfig struct {
|
|
|
|
|
DocumentSyncURL string `env:"DOCUMENT_SYNC_URL,required,notEmpty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *DocSyncConfig) GetDocumentSyncURL() string {
|
|
|
|
|
return c.DocumentSyncURL
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ConfigProvider interface {
|
|
|
|
|
GetDocumentSyncURL() string
|
|
|
|
|
}
|