aboutsummaryrefslogtreecommitdiff
path: root/qc_app/entry.py
diff options
context:
space:
mode:
Diffstat (limited to 'qc_app/entry.py')
-rw-r--r--qc_app/entry.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/qc_app/entry.py b/qc_app/entry.py
new file mode 100644
index 0000000..4963246
--- /dev/null
+++ b/qc_app/entry.py
@@ -0,0 +1,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"