feat: initial commit

This commit is contained in:
Zhiqiang Li
2023-03-24 15:12:01 +08:00
commit e025a0f9e0
13 changed files with 409 additions and 0 deletions

9
apis/vars.go Normal file
View File

@@ -0,0 +1,9 @@
package apis
var (
ignoreHeaders = map[string]int{
"Content-Type": 1,
"Transfer-Encoding": 1,
"Date": 1,
}
)