summaryrefslogtreecommitdiffhomepage
path: root/main.cpp
blob: d22442a563582bebd363ac6403e3fb5ee905e7f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "MainLoop.h"

int main() {

  try {
    MainLoop main_loop;
    return main_loop.run();
  } catch (const std::exception& ex) {
    std::cerr << "Error: " << ex.what() << std::endl;
  }

  return 1;
}