Mercurial > minori
annotate include/services/anilist.h @ 253:b3549da699a6
*: ooooh! stupid big commit!
oops
| author | Paper <paper@paper.us.eu.org> |
|---|---|
| date | Tue, 06 Feb 2024 16:56:32 -0500 |
| parents | c130f47f6f48 |
| children | 862d0d8619f6 |
| rev | line source |
|---|---|
| 9 | 1 #ifndef __services__anilist_h |
| 2 #define __services__anilist_h | |
| 15 | 3 |
| 250 | 4 #include <vector> |
| 5 #include <string> | |
| 15 | 6 |
| 63 | 7 namespace Services { |
| 8 namespace AniList { | |
| 15 | 9 |
|
44
619cbd6e69f9
filesystem: fix CreateDirectories function
Paper <mrpapersonic@gmail.com>
parents:
36
diff
changeset
|
10 bool AuthorizeUser(); |
| 9 | 11 |
| 12 /* Read queries */ | |
| 13 int GetAnimeList(); | |
| 14 | |
| 250 | 15 /* Search query */ |
| 16 std::vector<int> Search(const std::string& search); | |
| 17 | |
| 9 | 18 /* Write queries (mutations) */ |
| 19 int UpdateAnimeEntry(int id); | |
| 15 | 20 |
| 63 | 21 } // namespace AniList |
| 22 } // namespace Services | |
| 15 | 23 |
| 9 | 24 #endif // __services__anilist_h |
