代码拉取完成,页面将自动刷新
package pkg
import (
"crypto/md5"
"fmt"
"os"
"gitee.com/nonull/eden/pkg/constant"
)
var (
appLogDir string
appMode string
appRegion string
appZone string
appHost string
appInstance string
)
func InitEnv() {
appLogDir = os.Getenv(constant.EnvAppLogDir)
appMode = os.Getenv(constant.EnvAppMode)
appRegion = os.Getenv(constant.EnvAppRegion)
appZone = os.Getenv(constant.EnvAppZone)
appHost = os.Getenv(constant.EnvAppHost)
appInstance = os.Getenv(constant.EnvAppInstance)
if appInstance == "" {
appInstance = fmt.Sprintf("%x", md5.Sum([]byte(fmt.Sprintf("%s:%s", HostName(), AppID()))))
}
}
func AppLogDir() string {
return appLogDir
}
func SetAppLogDir(logDir string) {
appLogDir = logDir
}
func AppMode() string {
return appMode
}
func SetAppMode(mode string) {
appMode = mode
}
func AppRegion() string {
return appRegion
}
func SetAppRegion(region string) {
appRegion = region
}
func AppZone() string {
return appZone
}
func SetAppZone(zone string) {
appZone = zone
}
func AppHost() string {
return appHost
}
func SetAppHost(host string) {
appHost = host
}
func AppInstance() string {
return appInstance
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。