Files
projectreshoot/contexts/keys.go

12 lines
193 B
Go

package contexts
type contextKey string
func (c contextKey) String() string {
return "projectreshoot context key " + string(c)
}
var (
contextKeyAuthorizedUser = contextKey("auth-user")
)