blob: fb06518428c1c10847e150b6e0924332225da1c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package wikipedia
type APIResponse struct {
Continue *struct {
Continue string `json:"continue"`
LlContinue string `json:"llcontinue"`
} `json:"continue"`
Query struct {
Pages []struct {
Title string `json:"title"`
LangLinks *[]struct {
Lang string `json:"lang"`
Title string `json:"title"`
} `json:"langlinks"`
} `json:"pages"`
} `json:"query"`
}
|