api-server/config/config.go
2024-09-24 13:31:28 +08:00

15 lines
204 B
Go

package config
var Cfg Config
// Config 配置
type Config struct {
Server Server
}
// Server 服务配置
type Server struct {
AppMode string // 应用模式
ServerPort string // 服务端口
}