From 5bbec9ba92484e62b71e5f9bfd46b1b33656c5f9 Mon Sep 17 00:00:00 2001 From: anulax1225 Date: Mon, 18 Mar 2024 16:12:26 +0100 Subject: [PATCH] Modified code to work with new module system --- sandbox/server/main.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/sandbox/server/main.cpp b/sandbox/server/main.cpp index 6b64d49..eafc4c5 100755 --- a/sandbox/server/main.cpp +++ b/sandbox/server/main.cpp @@ -10,7 +10,6 @@ int main() HttpServer server(ip, PORT); server.get("/", [](HttpRequest req) { - log("Path /") HttpReponse res(HTTP_RES_200, req.version); res.body = "

Hello World! " + req.url + "

"; return res; @@ -18,7 +17,6 @@ int main() server.get("/home/", [](HttpRequest req) { - log("Path /home/") HttpReponse res(HTTP_RES_200, req.version); res.body = "

Hello World! " + req.url + "

"; return res;