Crow/http_request.h
2014-04-15 00:31:51 +09:00

14 lines
200 B
C++

#pragma once
#include "common.h"
namespace flask
{
struct request
{
std::string url;
std::unordered_map<std::string, std::string> headers;
std::string body;
};
}