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