Mercurial > minori
view include/services/anilist.h @ 39:bed33f89a982
ci/osx: darling is different from wine
darling needs a separate 'shell' ARG
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Fri, 22 Sep 2023 09:41:10 -0400 |
parents | 2743011a6042 |
children | 619cbd6e69f9 |
line wrap: on
line source
#ifndef __services__anilist_h #define __services__anilist_h #include "core/anime.h" #include "core/json.h" #include <curl/curl.h> namespace Services::AniList { int AuthorizeUser(); /* Read queries */ int GetAnimeList(); /* Write queries (mutations) */ int UpdateAnimeEntry(int id); }; // namespace Services::AniList #endif // __services__anilist_h