crow

https://github.com/ipkn/crow

#include "crow.h"

int main()
{
    crow::SimpleApp app;
    CROW_ROUTE(app, "/")([]() {
        return "Hello world";
    });
    app.port(18080).multithreaded().run();
}

你可能感兴趣的:(crow)