system-pri/backend/app/students/routes/__init__.py

10 lines
266 B
Python

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)