moved request handlers to separate files

This commit is contained in:
2025-11-09 02:06:33 +05:00
parent ea4a649e00
commit 96a117bc50
10 changed files with 184 additions and 107 deletions

View File

@@ -0,0 +1,9 @@
#include "request_handlers.h"
declare_RequestHandler(T)
{
Deferral(4);
logDebug(log_ctx, "requested %s", req_type_name);
Return RESULT_VOID;
}