aboutsummaryrefslogtreecommitdiff
path: root/gn3/api/ctl.py
blob: 7de83d773d8d39394f4c1b9ea9811269d74b5cd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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"