library/config/config.go

15 lines
311 B
Go
Raw Normal View History

2021-07-03 00:46:58 +00:00
package config
type Config struct {
DBUser string
DBPass string
DBHost string
DBPort string
DBName string
DiscogsToken string
DiscogsUser string
DiscogsPersist bool
DiscogsCacheFile string `default:".recordsCache"`
Debug bool
2021-07-03 00:46:58 +00:00
}