fusenapi/server/collection/internal/config/config.go
laodaming 8cf76c7051 fix
2023-10-10 18:08:58 +08:00

18 lines
285 B
Go

package config
import (
"fusenapi/server/collection/internal/types"
"github.com/zeromicro/go-zero/rest"
)
type Config struct {
rest.RestConf
SourceMysql string
Auth types.Auth
SourceRabbitMq string
BLMService struct {
Version string
Urls []string
}
}