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