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