blob: 496324683086d7623c55d86c370464e9e265adae (
plain)
1
2
3
4
5
6
7
8
9
|
"""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"
|