server-go/socket/client/client-ctx.go
2018-08-22 17:37:12 +09:00

20 lines
244 B
Go

package client
import (
ouc "git.loafle.net/overflow/util-go/ctx"
)
type ClientCtx interface {
ouc.Ctx
}
func NewClientCtx(parent ouc.Ctx) ClientCtx {
return &clientCtx{
Ctx: ouc.NewCtx(parent),
}
}
type clientCtx struct {
ouc.Ctx
}