2022-06-12 22:20:10 +02:00
|
|
|
from flask import Blueprint
|
|
|
|
|
2022-10-27 16:59:12 +02:00
|
|
|
from .enrollments import bp as enrollments_bp
|
2022-06-12 22:20:10 +02:00
|
|
|
from .registrations import bp as registrations_bp
|
|
|
|
|
|
|
|
bp = Blueprint("students", __name__, url_prefix="/students")
|
|
|
|
|
2022-10-27 16:59:12 +02:00
|
|
|
bp.register_blueprint(registrations_bp)
|
|
|
|
bp.register_blueprint(enrollments_bp)
|