22 lines
421 B
Go
22 lines
421 B
Go
package constants
|
|
|
|
// Fiber Locals 的上下文键
|
|
const (
|
|
ContextKeyRequestID = "requestid"
|
|
ContextKeyUserID = "user_id"
|
|
ContextKeyStartTime = "start_time"
|
|
)
|
|
|
|
// 配置环境变量
|
|
const (
|
|
EnvConfigPath = "CONFIG_PATH"
|
|
EnvConfigEnv = "CONFIG_ENV" // dev, staging, prod
|
|
)
|
|
|
|
// 默认配置值
|
|
const (
|
|
DefaultConfigPath = "configs/config.yaml"
|
|
DefaultServerAddr = ":3000"
|
|
DefaultRedisAddr = "localhost:6379"
|
|
)
|