mirror of
https://github.com/simon-ding/polaris.git
synced 2026-02-06 15:10:49 +08:00
14 lines
153 B
Go
14 lines
153 B
Go
package importlist
|
|
|
|
type Item struct {
|
|
Title string
|
|
Year int
|
|
ImdbID string
|
|
TvdbID string
|
|
TmdbID string
|
|
}
|
|
|
|
type Response struct {
|
|
Items []Item
|
|
}
|