cpp_server/http_common.hpp
2025-06-12 19:01:53 -05:00

7 lines
125 B
C++

#pragma once
#include <cstdint>
enum class HttpMethod : uint8_t {
GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS, UNKNOWN
};