package config
var (
Mode string = "debug"
)
// IsDebug 开发版本
func IsDebug() bool {
return Mode == "debug"
}