feat: add season and airdate fields to tvmaze episode struct

This commit is contained in:
2026-07-06 19:07:23 +02:00
parent 15e08e1460
commit 18bcaf9e31

View File

@@ -32,7 +32,9 @@ type show struct {
}
type episode struct {
Name string `json:"name"`
Name string `json:"name"`
Season int `json:"season"`
Airdate string `json:"airdate"`
}
func NewClient() *Client {