Files
core/vars/service.go
2025-03-29 15:02:49 +08:00

11 lines
157 B
Go

package vars
var (
RUN_MODE_DEV = "dev"
RUN_MODE_TEST = "test"
RUN_MODE_PROD = "prod"
ServiceLease int64 = 60
ServiceRootPrefix string = "/"
)