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.
17 lines
423 B
17 lines
423 B
package sp |
|
|
|
type Specil struct { |
|
Results int `json:"results"` |
|
Pages int `json:"pages"` |
|
Items map[string]*Item `json:"list"` |
|
} |
|
|
|
type Item struct { |
|
Title string `json:"title"` |
|
Cover string `json:"cover"` |
|
MCover string `json:"m_cover"` |
|
SCover string `json:"s_cover"` |
|
CTime string `json:"create_at"` |
|
SpID int64 `json:"spid"` |
|
Attention int `json:"attention"` |
|
}
|
|
|