1 Star 0 Fork 0

Wsage / go-framework

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
server_config.go 330 Bytes
一键复制 编辑 原始数据 按行查看 历史
王少奇 提交于 2021-08-06 17:33 . 优化
package httpserver
type ServerOps = func(*HttpServer)
type ServerConfig struct {
requestId bool
requestIdField string
}
var WithOpsRequestId = func(requestIdField string) ServerOps {
return func(server *HttpServer) {
server.config.requestId = requestIdField != ""
server.config.requestIdField = requestIdField
}
}
Go
1
https://gitee.com/scottq/go-framework.git
git@gitee.com:scottq/go-framework.git
scottq
go-framework
go-framework
v1.1.21

搜索帮助