gorum/contextlib/context.go

9 lines
113 B
Go

package contextlib
type contextKey string
var (
ThemeKey contextKey = "theme"
UserKey contextKey = "user"
)