package
Version:
v0.0.0-...-f389ad8
Opens a new window with list of versions in this module.
Published: Nov 26, 2024
License: GPL-3.0
Opens a new window with license information.
Imports: 4
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
View Source
const Default = `
db:
host: 127.0.0.1
port: "5432"
user: song
dbname: song
password: song
sslmode: disable
`
type Config struct {
Database Database `mapstructure:"db"`
}
type Database struct {
Host string `mapstructure:"host"`
Port string `mapstructure:"port"`
User string `mapstructure:"user"`
DBName string `mapstructure:"dbname"`
Password string `mapstructure:"password"`
SSLmode string `mapstructure:"sslmode"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.