initial commit

This commit is contained in:
2022-04-22 23:42:48 +02:00
commit 4e31c21500
7 changed files with 82 additions and 0 deletions

15
src/main.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include <iostream>
#include <boost/asio.hpp>
#include "crow.h"
int main()
{
crow::SimpleApp app;
CROW_ROUTE(app, "/")([]() {
return "Hello World";
});
app.port(18080).run();
return 0;
}