package
0.0.0-20231208061952-f10d33120ced
Repository: https://github.com/liguoqinjim/go-labs.git
Documentation: pkg.go.dev
# README
instance_example
注意点
- 注意,patch这种方法的时候
func (c *Client) Get(url string) (resp *Response, err error) {...}
, 第一个参数要注意要写成*Client
,如:func(_ *http.Client, url string) (*http.Response, error)