From 33a7855d73df384def74cf60888622fcf0d01a9d Mon Sep 17 00:00:00 2001 From: Michael Anderson <33232231+MichaelAceAnderson@users.noreply.github.com> Date: Mon, 20 Jul 2026 00:27:27 +0200 Subject: [PATCH] feat: Added missing HTTP request types --- include/core.hpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/core.hpp b/include/core.hpp index 212d3c7..d7cec93 100644 --- a/include/core.hpp +++ b/include/core.hpp @@ -11,7 +11,11 @@ enum HTTPRequestType { HTTPRequestType_Get = 1, HTTPRequestType_Post, - HTTPRequestType_Head + HTTPRequestType_Head, + HTTPRequestType_Put, + HTTPRequestType_Patch, + HTTPRequestType_Delete, + HTTPRequestType_Options, }; struct HTTPResponseHandler