mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
12 lines
179 B
C++
12 lines
179 B
C++
#pragma once
|
|
|
|
namespace flask
|
|
{
|
|
struct request
|
|
{
|
|
std::string url;
|
|
std::unordered_map<std::string, std::string> headers;
|
|
std::string body;
|
|
};
|
|
}
|