more refactors and logs page handling

This commit is contained in:
shenlong-tanwen
2024-10-23 02:30:46 +05:30
parent 8f47645cdb
commit a0afea04d8
90 changed files with 2386 additions and 584 deletions
+5 -5
View File
@@ -66,9 +66,9 @@ class ImApiClient extends ApiClient with LogMixin {
return res;
}
UsersApi getUsersApi() => UsersApi(this);
ServerApi getServerApi() => ServerApi(this);
AuthenticationApi getAuthenticationApi() => AuthenticationApi(this);
OAuthApi getOAuthApi() => OAuthApi(this);
SyncApi getSyncApi() => SyncApi(this);
UsersApi get usersApi => UsersApi(this);
ServerApi get serverApi => ServerApi(this);
AuthenticationApi get authenticationApi => AuthenticationApi(this);
OAuthApi get oAuthApi => OAuthApi(this);
SyncApi get syncApi => SyncApi(this);
}