This commit is contained in:
laodaming
2023-07-28 15:10:06 +08:00
parent 8f5bcc76ec
commit f316a340c8
8 changed files with 103 additions and 5 deletions

View File

@@ -5,4 +5,5 @@ SourceMysql: fusentest:XErSYmLELKMnf3Dh@tcp(110.41.19.98:3306)/fusentest
Auth:
AccessSecret: fusen2023
AccessExpire: 2592000
RefreshAfter: 1592000
RefreshAfter: 1592000
SourceRabbitMq: amqp://guest:guest@localhost:5672

View File

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