Crow/include/http_request.h

15 lines
226 B
C
Raw Normal View History

2014-04-01 13:58:52 +00:00
#pragma once
2014-04-14 15:31:51 +00:00
#include "common.h"
2014-04-26 17:19:59 +00:00
namespace crow
2014-04-01 13:58:52 +00:00
{
struct request
{
HTTPMethod method;
2014-04-01 13:58:52 +00:00
std::string url;
std::unordered_map<std::string, std::string> headers;
std::string body;
};
}