13 lines
314 B
Go
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")
|
|
)
|