package config type System struct { Env string `mapstructure:"env" json:"env" yaml:"env"` // 环境值 Addr int `mapstructure:"addr" json:"addr" yaml:"addr"` // 端口值 NeedQuotePublish bool `mapstructure:"need-quote-publish" json:"need-quote-publish" yaml:"need-quote-publish"` // 是否需要连接行情发布服务 QuotePublishAddr string `mapstructure:"quote-publish-addr" json:"quote-publish-addr" yaml:"quote-publish-addr"` // 行情发布服务地址 }