mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
17 lines
261 B
C++
17 lines
261 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;
|
|
};
|
|
}
|