kleinCommand/common/config.go
2025-07-19 22:05:15 +02:00

11 lines
182 B
Go

package common
type Config struct {
Settings Settings `toml:"settings"`
}
type Settings struct {
Environment string `toml:"environment"`
LogLevel string `toml:"log_level"`
}