fix: deps

This commit is contained in:
Simon Ding
2025-06-30 18:29:51 +08:00
parent 33b5f35bd2
commit 9e00e69941
4 changed files with 31 additions and 7 deletions

View File

@@ -60,10 +60,12 @@ type MediaExtras struct {
JavId string `json:"javid"`
//OriginCountry []string `json:"origin_country"`
OriginalLanguage string `json:"original_language"`
Genres []struct {
ID int64 `json:"id"`
Name string `json:"name"`
} `json:"genres"`
Genres []Genre `json:"genres"`
}
type Genre struct {
ID int64 `json:"id"`
Name string `json:"name"`
}
func (m *MediaExtras) IsJav() bool {