2026-03-03 16:53:54 +00:00
|
|
|
package tmdb
|
|
|
|
|
|
|
|
|
|
type movieSearchResponse struct {
|
|
|
|
|
Results []struct {
|
|
|
|
|
Id int `json:"id"`
|
|
|
|
|
} `json:"results"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type tvSearchResponse struct {
|
|
|
|
|
Results []struct {
|
|
|
|
|
Id int `json:"id"`
|
|
|
|
|
} `json:"results"`
|
|
|
|
|
}
|
2026-03-03 18:44:56 +00:00
|
|
|
|
|
|
|
|
type externalIdsResponse struct {
|
|
|
|
|
ImdbId string `json:"imdb_id"`
|
|
|
|
|
}
|