9 lines
98 B
Go
9 lines
98 B
Go
package constants
|
|
|
|
type contextKey int
|
|
|
|
const (
|
|
ContextKeyID contextKey = iota
|
|
ContextKeyPath
|
|
)
|