Remove unused endpoint in the backend (fix #80)

This commit is contained in:
cami 2021-06-28 03:50:55 +02:00
parent 10766dc601
commit 2ae7cb129d

View file

@ -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():
"""