type DBConfig struct {
DataBase string `toml:"data_base"`
FileName string `toml:"file_name"`
User string `toml:"user"`
Password string `toml:"password"`
Host string `toml:"host"`
Port int `toml:"port"`
Name string `toml:"name"`
Debug int `toml:"debug"`
}
type LoggerConfig struct {
FileName string `toml:"file_name"`
MaxSize int `toml:"max_size"`
MaxBackups int `toml:"max_backups"`
MaxAge int `toml:"max_age"`
}