Remove a useless route

This commit is contained in:
jvoisin 2018-12-16 20:35:52 +01:00
parent 100f3bb295
commit 2b96456685

View file

@ -35,10 +35,6 @@ def download_file(filename:str):
return response
return send_from_directory(app.config['UPLOAD_FOLDER'], filepath)
@app.route('/about')
def about():
return render_template('about.html', mimetypes=mimetypes)
@app.route('/', methods=['GET', 'POST'])
def upload_file():
if request.method == 'POST':