starter/pkg/env/environment.go
2026-03-28 19:29:40 +08:00

11 lines
211 B
Go

package env
import "gitea.micah.wiki/pandora/starter/app/config"
func IsProd() bool {
return config.GetConfig().Server.Env == "prod"
}
func IsLocal() bool {
return config.GetConfig().Server.Env == "local"
}