Multiple implementations of the same back-end application. The aim is to provide quick, side-by-side comparisons of different technologies (languages, frameworks, libraries) while preserving consistent business logic across all implementations.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10 lines
224 B

#include "App.h"
#include "autostore/Version.h"
#include <iostream>
int main(int argc, char** argv)
{
std::cout << "AutoStore v" << nxl::getVersionString() << std::endl;
nxl::App app(argc, argv);
return app.exec();
}