summaryrefslogtreecommitdiff
path: root/includes/Http.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/Http.h')
-rw-r--r--includes/Http.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/includes/Http.h b/includes/Http.h
new file mode 100644
index 0000000..cbb118f
--- /dev/null
+++ b/includes/Http.h
@@ -0,0 +1,23 @@
+#pragma once
+
+namespace Balau {
+
+namespace Http {
+
+enum {
+ GET,
+ POST,
+
+ REDIRECT = 301,
+
+ BAD_REQUEST = 400,
+ UNAUTHORIZED = 401,
+ FORBIDDEN = 403,
+ NOT_FOUND = 404,
+
+ ERROR = 500,
+};
+
+};
+
+};