// package app 应用信息包 package app import "github.com/runningwater/gohub/pkg/config" func IsLocal() bool { // 判断是否是本地环境 return config.Get("app.env") == "local" } func IsProduction() bool { return config.Get("app.env") == "production" } func IsTesting() bool { return config.Get("app.env") == "testing" }