Configured start of project

This commit is contained in:
Jef Roosens 2022-11-15 16:05:47 +01:00
commit d7f95f0fbf
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
6 changed files with 65 additions and 0 deletions

12
src/main.cpp Normal file
View file

@ -0,0 +1,12 @@
#include "crow.h"
int main()
{
crow::SimpleApp app;
CROW_ROUTE(app, "/")([](){
return "Hello world";
});
app.port(18080).multithreaded().run();
}