Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Conf = new(multipleConfig)
通过viper库,将配置文件对应到了结构体中 这样取配置信息就很方便了 这里实例化了一个全局的 Conf变量 用 Conf.MySQLConfig. 的方式取配置信息
Functions ¶
Types ¶
type MySQLConfig ¶
type MySQLConfig struct { Host string `mapstructure:"host"` User string `mapstructure:"user"` Password string `mapstructure:"password"` DbName string `mapstructure:"dbname"` Port int `mapstructure:"port"` MaxOpenConns int `mapstructure:"max_open_conns"` MaxIdleConns int `mapstructure:"max_idle_conns"` }
mysql 的配置信息
Click to show internal directories.
Click to hide internal directories.