This commit is contained in:
laodaming
2023-11-09 14:30:06 +08:00
parent 6b44eb780d
commit 892509b5db
10 changed files with 508 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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
FeiShu struct {
ApiHost string
EncryptKey string
VerificationToken string
}
}