lkoeller

Results 2 comments of lkoeller

I just test it and it works ! // Test multiple method on same URL CROW_ROUTE(app,"/hello/") .methods(crow::HTTPMethod::Get) ([](int count){ if (count > 100) return crow::response(400); std::ostringstream os; os

I don't understand why my example code is not working. Just tested again with examples/helloworld.cpp `#include "crow.h" int main() { crow::SimpleApp app; CROW_ROUTE(app, "/") ([]() { return "Hello world!"; });...