httpCtx 副本包

This commit is contained in:
chenjiekun
2023-03-02 15:31:42 +08:00
parent e9888ae533
commit 44678168a4
11 changed files with 1205 additions and 32 deletions

View File

@@ -0,0 +1,10 @@
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")
)