+ moved infra/sync-cfg to infra/sync-consumer-cfg + adjut anything related to old infra/sync + infra/sync is now have new setting for the sync
12 lines
266 B
Go
12 lines
266 B
Go
package synccfg
|
|
|
|
var O SyncUrlCfg = SyncUrlCfg{} // old
|
|
|
|
type SyncUrlCfg struct {
|
|
Prefix string `yaml:"prefix"`
|
|
TargetHost string `yaml:"targetHost"`
|
|
Enable bool `yaml:"enable"`
|
|
Source string `yaml:"source"`
|
|
SecretKey string `yaml:"secretKey"`
|
|
}
|