refactor: split jikan client into smaller domain files

This commit is contained in:
2026-04-06 22:29:34 +02:00
parent a7e941b563
commit efeaef21a1
5 changed files with 181 additions and 170 deletions

View File

@@ -145,3 +145,13 @@ func (a Anime) DisplayTitle() string {
}
return a.Title
}
type SearchResult struct {
Animes []Anime
HasNextPage bool
}
type TopAnimeResult struct {
Animes []Anime
HasNextPage bool
}