Files
honoka-chan/model/response.go
T
YumeMichi 0a4496ff54 2023-03-21
Signed-off-by: Yuan Si <do4suki@gmail.com>
2023-03-21 07:43:16 +08:00

11 lines
237 B
Go

package model
import "encoding/json"
// response_data
type Response struct {
ResponseData json.RawMessage `json:"response_data"`
ReleaseInfo []interface{} `json:"release_info"`
StatusCode int `json:"status_code"`
}