You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iTi-Flask/iti/applications/routes/common/__init__.py

6 lines
192 B
Python

from .upload import bp as upload_bp
from .file_access import bp as file_access_bp
def register_common_bp(app):
app.register_blueprint(upload_bp)
app.register_blueprint(file_access_bp)