api-server/config/config.go

15 lines
204 B
Go
Raw Permalink Normal View History

2024-09-24 05:31:28 +00:00
package config
var Cfg Config
// Config 配置
type Config struct {
Server Server
}
// Server 服务配置
type Server struct {
AppMode string // 应用模式
ServerPort string // 服务端口
}