websocket_fasthttp/server_context.go
crusader 4522a80579 ing
2017-11-27 23:30:18 +09:00

21 lines
295 B
Go

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