8 lines
97 B
Go
8 lines
97 B
Go
|
package handlers
|
||
|
|
||
|
type handlerContextKey int
|
||
|
|
||
|
const (
|
||
|
CtxAdminClient handlerContextKey = iota
|
||
|
)
|