guestbook/cmd/web/context.go

7 lines
152 B
Go
Raw Permalink Normal View History

2024-11-11 19:55:01 +00:00
package main
type contextKey string
const isAuthenticatedContextKey = contextKey("isAuthenticated")
const userNameContextKey = contextKey("username")