1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 00:05:16 +00:00

Initial commit

This commit is contained in:
2019-04-21 10:34:27 +02:00
commit c1a667b84b
59 changed files with 1508 additions and 0 deletions

View File

@ -0,0 +1,14 @@
/// Accounts credentials helper
///
/// Stores current account tokens
///
/// @author Pierre HUBERT
class AccountCredentialsHelper {
/// Checkout whether current user is signed in or not
Future<bool> signedIn() async {
return false; // TODO : implement
}
}