library/config/config.go

16 lines
352 B
Go
Raw Permalink Normal View History

2021-07-03 00:46:58 +00:00
package config
type Config struct {
DBType string `default:"sql"`
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
}