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" }