library/config/config.go

12 lines
184 B
Go
Raw Normal View History

2021-07-03 00:46:58 +00:00
package config
type Config struct {
2022-04-02 17:10:16 +00:00
DBUser string
DBPass string
DBHost string
DBPort string
DBName string
DiscogsToken string
Debug bool
2021-07-03 00:46:58 +00:00
}