summaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: bb08972fbb96471916b4e96f061b3ffbe4155f2b (plain)
1
2
3
4
5
6
7
8
#include "main_window.hpp"

int main(int argc, char* argv[]) {
    QApplication app{argc, argv};
    getsuyobi::GetsuyobiApp getsuyobi{};

    return app.exec();
}