core/vars/service.go

11 lines
157 B
Go
Raw Normal View History

2025-02-07 13:01:38 +08:00
package vars
var (
RUN_MODE_DEV = "dev"
RUN_MODE_TEST = "test"
RUN_MODE_PROD = "prod"
2025-03-29 15:02:49 +08:00
ServiceLease int64 = 60
ServiceRootPrefix string = "/"
2025-02-07 13:01:38 +08:00
)