type Database struct {
Host string `toml:"host"`
Port int `toml:"port"`
User string `toml:"username"`
Password string `toml:"password"`
Name string `toml:"database"`
MaxRetries int `toml:"max_retries"`
}
Database contains configuration details for database.