mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-30 01:12:26 -05:00
13 lines
400 B
Go
13 lines
400 B
Go
|
|
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"`
|
||
|
|
}
|