7107f0b
1
2
3
4
5
6
7
8
9
10
11
12
13
package base import "github.com/go-resty/resty/v2" type Json map[string]interface{} type TokenResp struct { AccessToken string `json:"access_token"` RefreshToken string `json:"refresh_token"` } type ReqCallback func(req *resty.Request)