2025-04-02 10:16:07 +08:00

8 lines
261 B
Go

package config
type App struct {
Host string `mapstructure:"host" json:"host" yaml:"host"` // 服务地址
Port int `mapstructure:"port" json:"port" yaml:"port"` // 服务端口
Prod bool `mapstructure:"prod" json:"prod" yaml:"prod"` // 是否正式
}