context_key.go 132 B

12345678
  1. package middleware
  2. type ctxKey string
  3. const (
  4. keyInstanceId ctxKey = "ctx.instance.id"
  5. keyJwtToken ctxKey = "ctx.jwt.token"
  6. )