library/config/config.go

12 lines
191 B
Go
Raw Normal View History

2021-07-03 00:46:58 +00:00
package config
type Config struct {
2022-03-13 22:04:09 +00:00
DBUser string
DBPass string
DBHost string
DBPort string
DBName string
Discogs_Token string
Debug bool
2021-07-03 00:46:58 +00:00
}