aboutsummaryrefslogtreecommitdiff
path: root/qc_app/entry.py
blob: 951b201c4bce0d6625a15511318fb6503cfe3a18 (plain)
1
2
3
4
5
6
7
8
9
"""Entry-point module"""
from flask import Blueprint, render_template

entrybp = Blueprint("entry", __name__)

@entrybp.route("/", methods=["GET", "POST"])
def upload_file():
    """Enables uploading the files"""
    return render_template("index.html")