Releases: guonaihong/gout
Releases · guonaihong/gout
v0.1.5版本
v0.1.4版本
v0.1.3版本
v0.1.2版本
changlog
#241 上传进度(在v0.0.4版本中间件里面实现https://github.com/antlabs/gout-middleware)
#248 调整FormFile和FormType的优先级
#250 新增关闭301中间件
v0.1.1版本
v0.1.0版本
v0.1.0版本内容如下
#226 bench:设置Rate(压测频率),Number和Duration会有误差(pr:#227)
#231 明确SetBody, BindBody传递nil指针返回错误(pr:#232)
#235 请求中间件设计(pr: #236)
#234 新增gzip压缩请求body功能
#233 打开debug模式,http.Header数据里面有%号效果优化(pr: #239)
请求中间件地址
https://github.com/antlabs/gout-middleware
请求中间件example
- 请求body使用gzip压缩
import (
"github.com/antlabs/gout-middleware/request"
"github.com/guonaihong/gout"
)
func main() {
gout.POST(":6666/compress").
RequestUse(request.GzipCompress()).
SetBody("hello world").
Do()
}