fusenapi/server/websocket/internal/config/config.go
2023-07-26 11:06:05 +08:00

14 lines
192 B
Go

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