library/config/config.go
David Ashby 5fed609b13
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci/woodpecker/pr/woodpecker Pipeline failed
add file system persistence of record API calls to avoid hammering the discogs API
2022-04-03 11:26:26 -04:00

15 lines
311 B
Go

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
}