summaryrefslogtreecommitdiff
path: root/middleware/context.go
blob: a76bca075054040e1bda415b5fbec0c89562ebaa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package middleware

type ctxKey int

const (
	requestIDKey ctxKey = iota
	SessionIDKey
	SessionValueKey
	SessionConfigKey
	SessionStorerKey
)