fastpastebin/config/database.go

11 lines
269 B
Go
Raw Normal View History

2018-04-30 18:42:17 +05:00
package config
// ConfigDatabase describes database configuration.
2018-04-30 18:42:17 +05:00
type ConfigDatabase struct {
Address string `yaml:"address"`
Port string `yaml:"port"`
Username string `yaml:"username"`
Password string `yaml:"password"`
Database string `yaml:"database"`
}