fusenapi/server/collection/internal/config/config.go

18 lines
285 B
Go
Raw Normal View History

2023-10-07 10:09:17 +00:00
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
2023-10-10 10:08:58 +00:00
BLMService struct {
Version string
Urls []string
}
2023-10-07 10:09:17 +00:00
}