2022-10-26 10:33:35 +02:00
|
|
|
from flask import Blueprint
|
|
|
|
|
2022-10-26 15:11:50 +02:00
|
|
|
from .enrollments import bp as enrollments_bp
|
2022-10-27 12:05:50 +02:00
|
|
|
from .examination_schedule import bp as examination_schedule_bp
|
2022-10-26 15:11:50 +02:00
|
|
|
|
2022-10-26 10:33:35 +02:00
|
|
|
bp = Blueprint("examination_schedule", __name__, url_prefix="/examination_schedule")
|
2022-10-26 15:11:50 +02:00
|
|
|
|
|
|
|
bp.register_blueprint(enrollments_bp)
|
2022-10-27 12:05:50 +02:00
|
|
|
bp.register_blueprint(examination_schedule_bp)
|