aboutsummaryrefslogtreecommitdiff
path: root/qc_app/upload/__init__.py
blob: 5f120d4756247f11d6e3dd3ffbc26c786109665b (plain)
1
2
3
4
5
6
7
"""Package handling upload of files."""
from flask import Blueprint

from .rqtl2 import rqtl2

upload = Blueprint("upload", __name__)
upload.register_blueprint(rqtl2, url_prefix="/rqtl2")