10 lines
311 B
Python
10 lines
311 B
Python
from flask import Blueprint
|
|
|
|
from .enrollments import bp as enrollments_bp
|
|
from .examination_schedule import bp as examination_schedule_bp
|
|
|
|
bp = Blueprint("examination_schedule", __name__, url_prefix="/examination_schedule")
|
|
|
|
bp.register_blueprint(enrollments_bp)
|
|
bp.register_blueprint(examination_schedule_bp)
|