21 lines
436 B
Go
21 lines
436 B
Go
package server
|
|
|
|
const ContextKeyPasskeyUsername = "context-passkey-username"
|
|
|
|
type ContextKey string
|
|
|
|
const (
|
|
ContextKeyStorage ContextKey = "Context key for storage"
|
|
ContextKeyActorId ContextKey = "Context key for actor id"
|
|
)
|
|
|
|
const (
|
|
HttpErrIdPlaceholder = iota
|
|
HttpErrIdMissingContextValue
|
|
HttpErrIdDbFailure
|
|
HttpErrIdNotAuthenticated
|
|
HttpErrIdJsonMarshalFail
|
|
HttpErrIdBadRequest
|
|
HttpErrIdAlreadyExists
|
|
HttpErrIdNotFound
|
|
)
|