From 2ac955ac53b1a1a3445ac8daaf4449c0a954c330 Mon Sep 17 00:00:00 2001
From: Alessandro Cerioni <acerioni@grandlyon.com>
Date: Thu, 12 Mar 2020 16:00:18 +0100
Subject: [PATCH] Removed useless route

---
 api.py | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/api.py b/api.py
index be2d706..e7bfdbe 100644
--- a/api.py
+++ b/api.py
@@ -55,11 +55,6 @@ api = Flask(__name__, static_url_path='')
 api.config['EXECUTOR_PROPAGATE_EXCEPTIONS'] = True
 executor = Executor(api)
 
-@api.route("/test")
-def test():
-
-    return jsonify({'test': "ok"})
-
 
 @api.route("/uuid/<the_uuid>", methods=["GET"])
 def _main(the_uuid):
-- 
GitLab