combluotion/config/config.go

11 lines
136 B
Go
Raw Normal View History

2024-09-12 16:40:31 -05:00
package config
type Config struct {
Env Env
BaseURL string
}
2024-09-13 13:38:30 -05:00
func (c Config) Environment() Env {
return ValidEnvOrDev(c.Env)
}