Crow/http_request.h

14 lines
200 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-01 13:58:52 +00:00
namespace flask
{
struct request
{
std::string url;
std::unordered_map<std::string, std::string> headers;
std::string body;
};
}