drone_plugin/consts/env.go

10 lines
152 B
Go
Raw Normal View History

2021-12-30 20:06:10 +08:00
package consts
type Env uint
const (
EnvNone Env = 0 // 忽略
EnvTest Env = 1 // 测试环境
EnvProduction Env = 2 // 生产环境
)