Files
apinto/node/http-context/error.go
2021-11-12 12:09:04 +08:00

11 lines
278 B
Go

package http_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")
)