feat: add studio api client and types

This commit is contained in:
2026-04-18 00:02:36 +02:00
parent 960d5be8ab
commit daf3c472b6
2 changed files with 108 additions and 0 deletions

View File

@@ -15,6 +15,12 @@ type TopAnimeResult struct {
HasNextPage bool
}
type StudioAnimeResult struct {
Animes []Anime
HasNextPage bool
StudioName string
}
type NamedEntity struct {
MalID int `json:"mal_id"`
Name string `json:"name"`