12 lines
234 B
Go
12 lines
234 B
Go
package probe
|
|
|
|
import (
|
|
ouc "git.loafle.net/overflow/util-go/ctx"
|
|
)
|
|
|
|
const (
|
|
SessionIDKey = ouc.CtxKey("SessionID")
|
|
SessionTargetIDKey = ouc.CtxKey("SessionTargetID")
|
|
SessionWriteChanKey = ouc.CtxKey("SessionWriteChan")
|
|
)
|