server-go/fasthttp/websocket/servlet.go
crusader f85b949e66 ing
2018-04-04 13:01:26 +09:00

13 lines
243 B
Go

package websocket
import (
"git.loafle.net/commons/server-go"
"github.com/valyala/fasthttp"
)
type Servlet interface {
server.Servlet
Handshake(servletCtx server.ServletCtx, ctx *fasthttp.RequestCtx) (*fasthttp.ResponseHeader, error)
}