This commit is contained in:
eson
2023-08-31 16:17:32 +08:00
parent 046ecb0ffb
commit 41e935bc65
9 changed files with 355 additions and 0 deletions

View File

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