mirror of
https://github.com/genxium/DelayNoMore
synced 2024-12-26 11:48:56 +00:00
38 lines
901 B
Go
38 lines
901 B
Go
package common
|
|
|
|
import (
|
|
"path/filepath"
|
|
|
|
"github.com/imdario/mergo"
|
|
"go.uber.org/zap"
|
|
|
|
. "dnmshared"
|
|
)
|
|
|
|
var Constants *constants
|
|
|
|
func MustParseConstants() {
|
|
fp := filepath.Join(Conf.General.AppRoot, "common/constants.json")
|
|
if isNotExist(fp) {
|
|
Logger.Fatal("common/constants.json文件不存在")
|
|
}
|
|
Constants = new(constants)
|
|
loadJSON(fp, Constants)
|
|
|
|
Logger.Debug("Conf.General.ServerEnv", zap.String("env", Conf.General.ServerEnv))
|
|
if Conf.General.ServerEnv == SERVER_ENV_TEST {
|
|
fp = filepath.Join(Conf.General.AppRoot, "common/constants_test.json")
|
|
if !isNotExist(fp) {
|
|
testConstants := new(constants)
|
|
loadJSON(fp, testConstants)
|
|
err := mergo.Merge(testConstants, Constants)
|
|
if nil != err {
|
|
panic(err)
|
|
}
|
|
Constants = testConstants
|
|
}
|
|
}
|
|
constantsPost()
|
|
// Logger.Debug("const", zap.Int("IntAuthTokenTTLSeconds", Constants.Player.IntAuthTokenTTLSeconds))
|
|
}
|