mirror of
https://github.com/logos-blockchain/lez-explorer-ui.git
synced 2026-04-08 20:43:16 +00:00
14 lines
188 B
C++
14 lines
188 B
C++
|
|
#include "mainwindow.h"
|
||
|
|
|
||
|
|
#include <QApplication>
|
||
|
|
|
||
|
|
int main(int argc, char* argv[])
|
||
|
|
{
|
||
|
|
QApplication app(argc, argv);
|
||
|
|
|
||
|
|
MainWindow window;
|
||
|
|
window.show();
|
||
|
|
|
||
|
|
return app.exec();
|
||
|
|
}
|