You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
324 B

package data
// HotArchiveRes hot recheck archive response
type HotArchiveRes struct {
Code int `json:"code"`
Note bool `json:"note"`
SourceDate string `json:"source_date"`
Num int `json:"num"`
List []struct {
Aid int64 `json:"aid"`
Score int `json:"score"`
} `json:"list"`
}