combluotion/config/config.go
2024-09-13 16:19:46 -05:00

10 lines
136 B
Go

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