From 2ae7cb129d177e0d3f36efc5cecd431e452c6630 Mon Sep 17 00:00:00 2001 From: cami Date: Mon, 28 Jun 2021 03:50:55 +0200 Subject: [PATCH] Remove unused endpoint in the backend (fix #80) --- backend/src/app.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/backend/src/app.py b/backend/src/app.py index a5fe15a..3614406 100644 --- a/backend/src/app.py +++ b/backend/src/app.py @@ -86,12 +86,6 @@ with app.app_context(): db.session.commit() -# Set up some routes for the example -@app.route('/api/') -def home(): - return {"Hello": "World"}, 200 - - @app.route('/api/login', methods=['POST']) def login(): """