diff seobeo/s_web.c @ 78:e7bf9e002850

amend
author June Park <parkjune1995@gmail.com>
date Wed, 31 Dec 2025 15:07:43 -0800
parents c348ac875294
children 5710108c949e
line wrap: on
line diff
--- a/seobeo/s_web.c	Wed Dec 31 14:17:40 2025 -0800
+++ b/seobeo/s_web.c	Wed Dec 31 15:07:43 2025 -0800
@@ -138,13 +138,9 @@
 
   // --- Try to match API route first ---
   Seobeo_Route_Handler handler = Seobeo_Router_Find_Handler(method, path, &p_req_map, p_request_arena);
-
   if (handler != NULL)
   {
-    // Call the API handler
     Seobeo_Request_Entry *p_response_map = handler(p_req_map, p_response_arena);
-
-    // Send the response
     Seobeo_Router_Send_Response(p_cli_handle, p_response_map, p_response_arena);
     goto clean_up;
   }