Files
apinto/node/http-context/http-context-copy/error.go
2023-03-02 15:31:42 +08:00

11 lines
283 B
Go

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