8 lines
196 B
Python
8 lines
196 B
Python
from flask import Blueprint
|
|
|
|
from .enrollments import bp as enrollments_bp
|
|
|
|
bp = Blueprint("project_supervisor", __name__, url_prefix="/project_supervisor")
|
|
|
|
bp.register_blueprint(enrollments_bp)
|