This commit is contained in:
laodaming
2023-11-06 14:09:40 +08:00
parent 005589007e
commit ebb7354d23
9 changed files with 293 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package config
import (
"fusenapi/server/feishu-sync/internal/types"
"github.com/zeromicro/go-zero/rest"
)
type Config struct {
rest.RestConf
SourceMysql string
Auth types.Auth
SourceRabbitMq string
}