b09c9f183c
+ 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
14 lines
387 B
Go
14 lines
387 B
Go
package synccfg
|
|
|
|
var O PartnerCfg = PartnerCfg{} // old
|
|
|
|
// Used by sync itself, so any partner should be stated here
|
|
type PartnerCfg struct {
|
|
OldSource string `yaml:"oldSource"`
|
|
OldSecretKey string `yaml:"oldSecretKey"`
|
|
OldHost string `yaml:"oldHost"`
|
|
NewSource string `yaml:"newSource"`
|
|
NewSecretKey string `yaml:"newSecretKey"`
|
|
NewHost string `yaml:"newHost"`
|
|
}
|