combluotion/config/config.go
2024-09-13 17:45:06 -05:00

11 lines
152 B
Go

package config
type Config struct {
Name string
Env Env
BaseURL string
}
func (c Config) Environment() Env {
return ValidEnvOrDev(c.Env)
}