aboutsummaryrefslogtreecommitdiffstats
path: root/src/N-Commands/RelationshipHandler.h
diff options
context:
space:
mode:
authorMax Kusatz <max@trialserver.de>2020-08-11 17:36:12 +0200
committerMax Kusatz <max@trialserver.de>2020-08-11 17:36:12 +0200
commit158ea1c382e34ff035d262d478a64e9b759ae858 (patch)
tree51c87c97dd8a42f7e04aede0f3544f42d695e501 /src/N-Commands/RelationshipHandler.h
downloadn_core-158ea1c382e34ff035d262d478a64e9b759ae858.tar.gz
n_core-158ea1c382e34ff035d262d478a64e9b759ae858.zip
First Steps of Backend
Diffstat (limited to 'src/N-Commands/RelationshipHandler.h')
-rw-r--r--src/N-Commands/RelationshipHandler.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/N-Commands/RelationshipHandler.h b/src/N-Commands/RelationshipHandler.h
new file mode 100644
index 0000000..251cabf
--- /dev/null
+++ b/src/N-Commands/RelationshipHandler.h
@@ -0,0 +1,10 @@
+#pragma once
+#include <mongoose.h>
+#include <mongoose/Request.h>
+#include <mongoose/StreamResponse.h>
+
+class RelationshipHandler {
+public:
+ void onCall(Mongoose::Request& request, Mongoose::StreamResponse& response);
+
+};