mirror of
https://gitlab.com/comunic/comunicmessages
synced 2024-12-04 19:24:11 +00:00
17 lines
251 B
C++
17 lines
251 B
C++
/**
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
#include <QApplication>
|
|
|
|
#include "controllers/initcontroller.h"
|
|
|
|
int main(int argc, char** argv){
|
|
QApplication app(argc, argv);
|
|
|
|
//Initialize app
|
|
(new InitController())->init();
|
|
|
|
return app.exec();
|
|
}
|