update env
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-12-30 20:06:10 +08:00
parent 76571a6b0b
commit 62ab81441d
11 changed files with 217 additions and 83 deletions
+9
View File
@@ -0,0 +1,9 @@
package consts
type Env uint
const (
EnvNone Env = 0 // 忽略
EnvTest Env = 1 // 测试环境
EnvProduction Env = 2 // 生产环境
)