Files
apinto/node/websocket-context/error.go
2022-10-26 11:04:56 +08:00

11 lines
283 B
Go

package websocket_context
import "errors"
var (
ErrorNotForm = errors.New("contentType is not Form")
ErrorNotMultipart = errors.New("contentType is not Multipart")
ErrorNotAllowRaw = errors.New("contentType is not allow Raw")
ErrorNotSend = errors.New("not send")
)