cpp_server/http_common.hpp
2025-06-12 22:02:53 -05:00

8 lines
126 B
C++

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