You've already forked CasaOS
mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-07-03 23:30:39 +02:00
13 lines
243 B
Go
13 lines
243 B
Go
![]() |
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)
|