2021-04-04 21:04:12 +01:00
|
|
|
#include <string>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
2021-10-04 23:42:58 +01:00
|
|
|
#include "Application.hpp"
|
|
|
|
|
|
2021-09-07 19:07:13 +01:00
|
|
|
int main(int argc, char* argv[]) {
|
2023-08-13 15:47:51 +01:00
|
|
|
auto application = Application(std::vector<std::string>(argv, argv + argc));
|
2022-06-22 22:24:27 +01:00
|
|
|
return application.run();
|
2021-04-04 21:04:12 +01:00
|
|
|
}
|