This repository has been archived on 2018-12-13. You can view files and clone it, but cannot push or open issues or pull requests.
arma-flow/src/main.cpp

14 lines
201 B
C++

//
// arma-flow/main.cpp
//
// @author CismonX
//
#include "factory.hpp"
/// Bootstrap the program.
int main(int argc, char** argv)
{
flow::factory::get()->get_executor()->execute(argc, argv);
}