erp_server/config/const.go

26 lines
364 B
Go
Raw Normal View History

2022-10-09 03:39:33 +00:00
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
)