aboutsummaryrefslogtreecommitdiff
path: root/gn3/api/ctl.py
diff options
context:
space:
mode:
Diffstat (limited to 'gn3/api/ctl.py')
-rw-r--r--gn3/api/ctl.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/gn3/api/ctl.py b/gn3/api/ctl.py
new file mode 100644
index 0000000..7de83d7
--- /dev/null
+++ b/gn3/api/ctl.py
@@ -0,0 +1,17 @@
+"""module contains endpoints for ctl"""
+
+# so small
+
+from flask import Blueprint
+from flask import request
+from flask import jsonify
+
+
+ctl = Blueprint("ctl",__name__)
+
+@ctl.route("/run_ctl",methods=["POST"])
+def run_ctl():
+ """endpoint to run ctl"""
+ ctl_data = request.json
+
+ return "hello" \ No newline at end of file