Add catchall route

This commit is contained in:
Tyler Perkins 2022-04-29 13:39:20 -04:00
parent 08bd3462b8
commit 5f85e772d8
1 changed files with 8 additions and 0 deletions

View File

@ -79,4 +79,12 @@ void setRoutes(crow::SimpleApp& app){
return ret;
});
//catchall route
CROW_CATCHALL_ROUTE(app)([](){
crow::json::wvalue ret;
ret["message"] = "Route not understood. Please refer to the documentation";
return crow::response(404, ret.dump());
});
}