probe/const.go

12 lines
234 B
Go
Raw Normal View History

2018-09-04 10:09:15 +00:00
package probe
import (
ouc "git.loafle.net/overflow/util-go/ctx"
)
const (
SessionIDKey = ouc.CtxKey("SessionID")
SessionTargetIDKey = ouc.CtxKey("SessionTargetID")
SessionWriteChanKey = ouc.CtxKey("SessionWriteChan")
)