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