cleanup and make the web routes cleaner

This commit is contained in:
Aaron Kimbre
2025-01-06 01:23:29 -06:00
parent f3b4143698
commit 88376c233c
12 changed files with 337 additions and 112 deletions

View File

@@ -0,0 +1,21 @@
#ifndef __EHTTPMETHODS__H__
#define __EHTTPMETHODS__H__
#include <cstdint>
#include "magic_enum.hpp"
enum class eHTTPMethod : uint16_t {
GET,
POST,
PUT,
DELETE,
HEAD,
CONNECT,
OPTIONS,
TRACE,
PATCH,
INVALID
};
#endif // __EHTTPMETHODS__H__