mirror of
https://github.com/krau/SaveAny-Bot.git
synced 2026-06-08 08:59:55 +08:00
17 lines
267 B
Go
17 lines
267 B
Go
package kemono
|
|
|
|
type PostLegacy struct {
|
|
Props Props `json:"props"`
|
|
Results []Result `json:"results"`
|
|
}
|
|
|
|
type Props struct {
|
|
Count uint `json:"count"`
|
|
Limit uint `json:"limit"`
|
|
}
|
|
|
|
type Result struct {
|
|
ID string `json:"id"`
|
|
Title string `json:"title"`
|
|
}
|