type Config struct {
Server Server `yaml:"server"`
Database DB `yaml:"db"`
Redis Redis `yaml:"redis"`
BalanceClient BalanceClient `yaml:"balanceClient"`
}
type DB struct {
Host string `yaml:"host"`
Port int `yaml:"port"`
Username string `yaml:"user"`
Password string `yaml:"password"`
NameDB string `yaml:"dbname"`
}