gitee accesstoken 数据
| 14 | |
| 15 | //gitee accesstoken 数据 |
| 16 | type GiteeAccessToken struct { |
| 17 | AccessToken string `json:"access_token"` |
| 18 | TokenType string `json:"token_type"` |
| 19 | ExpiresIn int `json:"expires_in"` |
| 20 | RefreshToken string `json:"refresh_token"` |
| 21 | Scope string `json:"scope"` |
| 22 | CreatedAt int `json:"created_at"` |
| 23 | } |
| 24 | |
| 25 | //gitee 用户数据 |
| 26 | //用户使用gitee登录的时候,直接根据gitee的id获取数据 |
nothing calls this directly
no outgoing calls
no test coverage detected