package
Version:
v1.0.0
Opens a new window with list of versions in this module.
Published: Feb 25, 2025
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Config struct {
MysqlInfo MysqlConfig `mapstructure:"mysql" json:"mysql"`
RedisInfo RedisConfig `mapstructure:"redis" json:"redis"`
}
type MysqlConfig struct {
Host string `mapstructure:"host" json:"host"`
Port int `mapstructure:"port" json:"port"`
UserName string `mapstructure:"username" json:"username"`
PassWord string `mapstructure:"password" json:"password"`
DBName string `mapstructure:"dbname" json:"dbname"`
}
type RedisConfig struct {
Host string `mapstructure:"host" json:"host"`
Port int `mapstructure:"port" json:"port"`
PassWord string `mapstructure:"password" json:"password"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.