mirror of
https://gitlab.com/comunic/comunicterm
synced 2024-11-16 10:31:06 +00:00
20 lines
325 B
C++
20 lines
325 B
C++
#include <iostream>
|
|
|
|
#include "api_request.h"
|
|
#include "loginscreen.h"
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
cout << "Comunic Term (c) Pierre HUBERT" << endl;
|
|
|
|
// First, we need to sign in user
|
|
if(!LoginScreen().exec()) {
|
|
cerr << "Could not sign in user!" << endl;
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|