13 lines
259 B
Go
13 lines
259 B
Go
package config
|
|
|
|
// ServerConfig 定义项目配置
|
|
type ServerConfig struct {
|
|
Host string `ini:"host" yaml:"host" mapstructure:"host"`
|
|
Port uint64 `ini:"port" yaml:"port" mapstructure:"port"`
|
|
}
|
|
|
|
var Server = ServerConfig{
|
|
Host: "127.0.0.1",
|
|
Port: 9999,
|
|
}
|