blob: 9cbc1746ec8a37fe9cb472590dc132c249e7087c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package config
// DBConfig provides configuration options for the database connection
type DBConfig struct {
Type string `yaml:"type"`
Address string `yaml:"address"`
Port int `yaml:"port"`
User string `yaml:"user"`
Password string `yaml:"password"`
Database string `yaml:"database"`
ApplicationName string `yaml:"applicationName"`
}
|