library/config/config.go
David Ashby c26ece0c86
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
initial sketch of how this will work
2023-12-30 20:27:24 -05:00

16 lines
352 B
Go

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
}