Mercurial > minori
annotate include/services/anilist.h @ 28:58d53f014612
ci/win32: create binfmt_misc status file
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Wed, 20 Sep 2023 00:36:04 -0400 |
parents | cde8f67a7c7d |
children | 2743011a6042 |
rev | line source |
---|---|
9 | 1 #ifndef __services__anilist_h |
2 #define __services__anilist_h | |
15 | 3 |
9 | 4 #include "core/anime.h" |
5 #include "core/json.h" | |
6 #include <curl/curl.h> | |
15 | 7 |
10 | 8 namespace Services::AniList { |
15 | 9 |
10 | 10 int AuthorizeUser(); |
9 | 11 |
12 /* Read queries */ | |
13 int GetAnimeList(); | |
14 | |
15 /* Write queries (mutations) */ | |
16 int UpdateAnimeEntry(int id); | |
15 | 17 |
18 }; // namespace Services::AniList | |
19 | |
9 | 20 #endif // __services__anilist_h |