Files
simrsx-be/internal/infra/sync-consumer-cfg/tycovar.go
T
munawwirul_jamal b09c9f183c feat/sync-setting:
+ 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
2025-11-28 09:16:38 +07:00

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"`
}