Flask-Files/app/routes/__init__.py
2025-03-22 12:30:45 +01:00

8 lines
316 B
Python

from flask import Blueprint
auth_bp = Blueprint('auth', __name__, url_prefix='/auth')
files_bp = Blueprint('files', __name__, url_prefix='/files')
dashboard_bp = Blueprint('dashboard', __name__, url_prefix='')
# Import the route handlers AFTER creating the blueprints
from app.routes import auth, files, dashboard