1 Star 0 Fork 0

hexug/goChainRestfulClient

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
negotiator.go 283 Bytes
一键复制 编辑 原始数据 按行查看 历史
hexug 提交于 2023-07-16 00:29 . 完成了基础功能
package negotiator
var negotiators = map[MIME]Negotiator{}
func GetNegotiator(m string) Negotiator {
n, ok := negotiators[MIME(m)]
if !ok {
return negotiators[MIME_TEXT_PLAIN]
}
return n
}
type MIME string
func Registry(n Negotiator) {
negotiators[n.ContentType()] = n
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/hexug/go-chain-restful-client.git
git@gitee.com:hexug/go-chain-restful-client.git
hexug
go-chain-restful-client
goChainRestfulClient
v0.5.3

搜索帮助