21 lines
295 B
Go
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
|
|
}
|