13 lines
307 B
Go
13 lines
307 B
Go
package synccfg
|
|
|
|
var O SyncUrlCfg = SyncUrlCfg{} // new
|
|
|
|
type SyncUrlCfg struct {
|
|
Prefix string `yaml:"prefix"`
|
|
TargetHost string `yaml:"targetHost"`
|
|
Enable bool `yaml:"enable"`
|
|
OldSource string `yaml:"oldSource"`
|
|
NewSource string `yaml:"newSource"`
|
|
SecretKey string `yaml:"secretKey"`
|
|
}
|