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[]) {
|
2021-04-04 21:04:12 +01:00
|
|
|
auto arguments = std::vector<std::string>();
|
|
|
|
|
if (argc > 1) {
|
|
|
|
|
arguments.assign(argv + 1, argv + argc);
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-05 15:32:08 +00:00
|
|
|
auto application = Bloom::Application();
|
2021-04-04 21:04:12 +01:00
|
|
|
return application.run(arguments);
|
|
|
|
|
}
|