certificates/authority/admin/context.go
2022-03-21 15:53:59 +01:00

10 lines
222 B
Go

package admin
// ContextKey is the key type for storing and searching for
// Admin API objects in request contexts.
type ContextKey string
const (
// AdminContextKey account key
AdminContextKey = ContextKey("admin")
)