From b6f67cd4addd233bf3c95f4e09a2cc0833988c60 Mon Sep 17 00:00:00 2001 From: Alexander Kabui Date: Thu, 14 Oct 2021 10:58:01 +0300 Subject: add endpoint for ctl --- gn3/api/ctl.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 gn3/api/ctl.py (limited to 'gn3/api') 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 -- cgit v1.2.3