aboutsummaryrefslogtreecommitdiffstats
path: root/http_request.h
diff options
context:
space:
mode:
Diffstat (limited to 'http_request.h')
-rw-r--r--http_request.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/http_request.h b/http_request.h
new file mode 100644
index 0000000..e5a8da0
--- /dev/null
+++ b/http_request.h
@@ -0,0 +1,11 @@
+#pragma once
+
+namespace flask
+{
+ struct request
+ {
+ std::string url;
+ std::unordered_map<std::string, std::string> headers;
+ std::string body;
+ };
+}