httpclient/go.mod

22 lines
698 B
Modula-2
Raw Normal View History

2024-05-24 12:30:20 +08:00
module git.zhangdeman.cn/gateway/httpclient
go 1.22.3
2024-05-24 12:44:08 +08:00
2024-06-01 18:41:26 +08:00
require (
git.zhangdeman.cn/zhangdeman/serialize v0.0.0-20240325080031-1f58204e8687
github.com/go-resty/resty/v2 v2.13.1
github.com/tidwall/gjson v1.17.1
)
2024-05-24 12:44:08 +08:00
require (
2024-05-31 14:57:25 +08:00
git.zhangdeman.cn/zhangdeman/consts v0.0.0-20240517060653-203cc568fbec // indirect
git.zhangdeman.cn/zhangdeman/util v0.0.0-20231227095334-7eb5cdbf9253 // indirect
2024-05-31 18:00:24 +08:00
github.com/BurntSushi/toml v1.4.0 // indirect
2024-05-31 14:57:25 +08:00
github.com/go-ini/ini v1.67.0 // indirect
2024-06-01 18:41:26 +08:00
github.com/stretchr/testify v1.9.0 // indirect
2024-05-31 14:57:25 +08:00
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
2024-05-24 12:44:08 +08:00
golang.org/x/net v0.25.0 // indirect
2024-05-31 14:57:25 +08:00
gopkg.in/yaml.v3 v3.0.1 // indirect
2024-05-24 12:44:08 +08:00
)