David Ashby
c26ece0c86
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
16 lines
352 B
Go
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
|
|
}
|