gateway/const.go
crusader 3f11e81d80 ing
2018-05-11 16:49:01 +09:00

13 lines
314 B
Go

package gateway
import (
cuc "git.loafle.net/commons/util-go/context"
)
const (
SessionClientTypeKey = cuc.ContextKey("SessionClientType")
SessionIDKey = cuc.ContextKey("SessionID")
SessionTargetIDKey = cuc.ContextKey("SessionTargetID")
SessionWriteChanKey = cuc.ContextKey("SessionWriteChan")
)