erp_server/config/const.go
2022-10-09 11:39:33 +08:00

26 lines
364 B
Go

package config
const ServiceName = "service_name"
const Local = "Local"
const (
Yes = "yes"
No = "no"
)
const DefaultConfigPath = "./pack"
const DefaultConfigSuffix = ".yaml"
const (
STAGE = "STAGE"
StageLocal = "local"
StageDevelop = "develop"
StageTest = "test"
StageRelease = "release"
StageProduct = "product"
DefaultStage = StageLocal
)