forked from TrueCloudLab/certificates
10 lines
222 B
Go
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")
|
|
)
|