Crow/include/http_request.h
2014-09-07 04:30:53 +09:00

17 lines
263 B
C++

#pragma once
#include "common.h"
namespace crow
{
struct request
{
HTTPMethod method;
std::string url;
std::unordered_map<std::string, std::string> headers;
std::string body;
void* middleware_context{};
};
}