diff --git a/src/Python/flask/web/app.py b/src/Python/flask/web/app.py index c06e1cd..ec7f8b8 100644 --- a/src/Python/flask/web/app.py +++ b/src/Python/flask/web/app.py @@ -66,6 +66,10 @@ def move(): return jsonify({"status": "success", "direction": direction}) +@app.route('/data', methods=['GET']) +def data(): + return kobuki_message + @app.route("/database") def database(): db = get_db()