Mercurial > minori
annotate src/services/services.cpp @ 10:4b198a111713
Update
things actually compile now btw
qttest wants to fuck over the model but that might be my fault so /shrug
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sat, 16 Sep 2023 02:06:01 -0400 |
parents | 5c0397762b53 |
children | cde8f67a7c7d |
rev | line source |
---|---|
10 | 1 #include "core/session.h" |
2 #include "services/anilist.h" | |
3 #include "services/services.h" | |
4 | |
5 namespace Services { | |
6 | |
7 void Synchronize() { | |
8 switch (session.config.service) { | |
9 case Anime::Services::ANILIST: AniList::GetAnimeList(); break; | |
10 default: break; | |
11 } | |
12 } | |
13 | |
14 void Authorize() { | |
15 switch (session.config.service) { | |
16 case Anime::Services::ANILIST: AniList::AuthorizeUser(); break; | |
17 default: break; | |
18 } | |
19 } | |
20 | |
21 }; // namespace Services |