server-go/fasthttp/websocket/servlet.go

13 lines
243 B
Go
Raw Normal View History

2018-04-04 04:01:26 +00:00
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)
}