package websocket_fasthttp import ( cuc "git.loafle.net/commons_go/util/context" ) type ServerContext interface { cuc.Context } type serverContext struct { cuc.Context } func NewServerContext(parent cuc.Context) ServerContext { sCTX := &serverContext{} sCTX.Context = cuc.NewContext(parent) return sCTX }