mirror of
https://github.com/eolinker/apinto
synced 2025-11-02 21:04:01 +08:00
11 lines
283 B
Go
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")
|
|
)
|