diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2022-02-13 11:27:12 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-13 11:27:12 +0000 |
commit | 541c75949e862f6fd1081bc4081b08187fa7da7b (patch) | |
tree | c32a78c0c6f16416f42975cac86fbfc23d1b1735 /anime/general.structs.go | |
parent | 0eb32bb339f66d3416c1088d6372bc7219b6e323 (diff) | |
parent | 419e08bc3a369a0c1138871184e1a30320032afd (diff) |
Merge pull request #3 from MikunoNaka/user-animelist
User animelist functions complete
Diffstat (limited to 'anime/general.structs.go')
-rw-r--r-- | anime/general.structs.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/anime/general.structs.go b/anime/general.structs.go index c49b762..5df1357 100644 --- a/anime/general.structs.go +++ b/anime/general.structs.go @@ -26,3 +26,8 @@ type Season struct { Year int `json:"year"` Name string `json:"season"` } + +type AnimeList struct { + Animes []Anime + Paging ListPaging +} |