2018-04-09 23:58:21 +09:00
|
|
|
package gateway
|
|
|
|
|
|
|
|
import (
|
|
|
|
cuc "git.loafle.net/commons/util-go/context"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2018-04-10 12:51:18 +09:00
|
|
|
SessionClientTypeKey = cuc.ContextKey("SessionClientType")
|
|
|
|
SessionIDKey = cuc.ContextKey("SessionID")
|
|
|
|
SessionTargetIDKey = cuc.ContextKey("SessionTargetID")
|
|
|
|
SessionWriteChanKey = cuc.ContextKey("SessionWriteChan")
|
2018-04-09 23:58:21 +09:00
|
|
|
)
|