2014-05-30 12:53:19 +04:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 13:23:14 +03:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2018-01-03 13:23:14 +03:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2014-05-30 12:53:19 +04:00
|
|
|
*/
|
2017-12-11 18:45:29 +04:00
|
|
|
#include "core/launcher.h"
|
2015-03-02 15:34:16 +03:00
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
int main(int argc, char *argv[]) {
|
2017-12-11 18:45:29 +04:00
|
|
|
const auto launcher = Core::Launcher::Create(argc, argv);
|
|
|
|
return launcher ? launcher->exec() : 1;
|
2014-05-30 12:53:19 +04:00
|
|
|
}
|