9 lines
114 B
Go
9 lines
114 B
Go
package context
|
|
|
|
type contextKey uint8
|
|
|
|
const (
|
|
ExecModeKey contextKey = iota
|
|
CometInfoKey contextKey = iota
|
|
)
|