from flask import Blueprint from .enrollments import bp as enrollments_bp from .registrations import bp as registrations_bp bp = Blueprint("students", __name__, url_prefix="/students") bp.register_blueprint(registrations_bp) bp.register_blueprint(enrollments_bp)