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