Files
honoka-chan/model/authkey.go
T
YumeMichi 69514cd052 Code cleanup
Signed-off-by: Yuan Si <do4suki@gmail.com>
2023-04-14 16:05:18 +08:00

15 lines
350 B
Go

package model
// AuthKeyRes ...
type AuthKeyRes struct {
AuthorizeToken string `json:"authorize_token"`
DummyToken string `json:"dummy_token"`
}
// AuthKeyResp ...
type AuthKeyResp struct {
ResponseData AuthKeyRes `json:"response_data"`
ReleaseInfo []interface{} `json:"release_info"`
StatusCode int `json:"status_code"`
}