9 lines
63 B
Go
9 lines
63 B
Go
package key
|
|
|
|
type Key int
|
|
|
|
const (
|
|
User Key = iota
|
|
Session
|
|
)
|