11 lines
182 B
Go
Raw Permalink Normal View History

2025-07-19 20:58:05 +02:00
package common
type Config struct {
2025-07-19 22:05:15 +02:00
Settings Settings `toml:"settings"`
}
type Settings struct {
Environment string `toml:"environment"`
LogLevel string `toml:"log_level"`
2025-07-19 20:58:05 +02:00
}