liuhaijun 3f5f28d785 add sheduling agent
Change-Id: I89f35fb3984044c57f10727432755012542f9fd8
2023-11-16 10:55:57 +00:00

13 lines
259 B
Go

package config
// ServerConfig 定义项目配置
type ServerConfig struct {
Host string `ini:"host" yaml:"host" mapstructure:"host"`
Port uint16 `ini:"port" yaml:"port" mapstructure:"port"`
}
var Server = ServerConfig{
Host: "127.0.0.1",
Port: 9999,
}