package consts type Env uint const ( EnvNone Env = 0 // 忽略 EnvTest Env = 1 // 测试环境 EnvProduction Env = 2 // 生产环境 )