8 lines
90 B
Go
8 lines
90 B
Go
package context
|
|
|
|
type contextKey string
|
|
|
|
const (
|
|
TokenContextKey = contextKey("token")
|
|
)
|