"""Entry-point module""" from flask import Blueprint entrybp = Blueprint("entry", __name__) @entrybp.route("/", methods=["GET", "POST"]) def upload_file(): """Enables uploading the files""" return "STUB: We upload the files here"