14 lines
220 B
Go
Raw Normal View History

2023-07-24 16:07:05 +08:00
package config
2023-07-26 11:06:05 +08:00
import (
"fusenapi/server/websocket/internal/types"
"github.com/zeromicro/go-zero/rest"
)
2023-07-24 16:07:05 +08:00
type Config struct {
rest.RestConf
2023-07-28 15:10:06 +08:00
SourceMysql string
Auth types.Auth
SourceRabbitMq string
2023-07-24 16:07:05 +08:00
}