Merge branch 'migration' of https://github.com/dikstub-rssa/simrs-be into feat/sync-setting-vanili

# Conflicts:
#	internal/infra/sync-consumer-cfg/tycovar.go
This commit is contained in:
vanilia
2025-12-03 11:51:50 +07:00
163 changed files with 6583 additions and 429 deletions
+3 -4
View File
@@ -1,12 +1,11 @@
package synccfg
var O SyncUrlCfg = SyncUrlCfg{} // new
var O SyncConsumerUrlCfg = SyncConsumerUrlCfg{} // old
type SyncUrlCfg struct {
type SyncConsumerUrlCfg struct {
Prefix string `yaml:"prefix"`
TargetHost string `yaml:"targetHost"`
Enable bool `yaml:"enable"`
OldSource string `yaml:"oldSource"`
NewSource string `yaml:"newSource"`
Source string `yaml:"source"`
SecretKey string `yaml:"secretKey"`
}