9 lines
311 B
Go
9 lines
311 B
Go
package main
|
|
|
|
type Config struct {
|
|
Mode string
|
|
ServiceAddress string `toml:"ServiceAddress" env:"SERVICE_ADDRESS"`
|
|
DdUrl string `toml:"DbUrl" env:"DATABASE_URL"`
|
|
JwtPrivateKey string `toml:"JwtPrivateKey" env:"JWT_PRIVATE_KEY"`
|
|
LogLevel string `toml:"LogLevel" env:"LOG_LEVEL"`
|
|
}
|