diff options
author | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-02-23 21:32:44 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-02-23 21:32:44 +0530 |
commit | e21dc47f2fe1dd3b1ad47224cd9cc3e75d0835fb (patch) | |
tree | 1bbc1d2b57c7eb8a7a36feb51ce0656cf49faf8a /util/structs.go | |
parent | 7a68abbc9e492934cf4170d5a0ff52a456fe92bd (diff) |
finalized manga package with all the endpoints added
Diffstat (limited to 'util/structs.go')
-rw-r--r-- | util/structs.go | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/util/structs.go b/util/structs.go index 4eb6325..1483d3f 100644 --- a/util/structs.go +++ b/util/structs.go @@ -19,7 +19,7 @@ package util /* NOTE: MAL still seems to send some fields * even if they aren't requested. * those include Title, Picture, Id, etc */ -// default fields to use when none are specified +// default anime fields to use when none are specified var DefaultFields []string = []string{ "id", "title", "main_picture", "alternative_titles", "start_date", @@ -35,6 +35,19 @@ var DefaultFields []string = []string{ "studios", "statistics", } +// default manga fields to use when none are specified +var DefaultMangaFields []string = []string{ + "id", "title", "main_picture", + "alternative_titles", "start_date", "end_date", + "synopsis", "mean", "rank", + "popularity", "num_list_users", "num_scoring_users", + "nsfw", "created_at", "media_type", + "status", "genres", "my_list_status", + "num_volumes", "num_chapters", "authors", + "pictures", "background", "related_anime", + "related_manga", "recommendations", "serialization", +} + // contains previous/next page for anime list // we don't actually need this. // TODO: for compatibility's sake, keep this but also define methods |