14 lines
206 B
Go
14 lines
206 B
Go
|
|
package tmdb
|
||
|
|
|
||
|
|
type movieSearchResponse struct {
|
||
|
|
Results []struct {
|
||
|
|
Id int `json:"id"`
|
||
|
|
} `json:"results"`
|
||
|
|
}
|
||
|
|
|
||
|
|
type tvSearchResponse struct {
|
||
|
|
Results []struct {
|
||
|
|
Id int `json:"id"`
|
||
|
|
} `json:"results"`
|
||
|
|
}
|