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

12 lines
347 B
Python
Raw Normal View History

2022-06-10 17:53:32 +02:00
from flask import Blueprint
from .students import bp as students_bp
from .project_supervisor import bp as project_supervisor_bp
from .groups import bp as groups_bp
2022-06-10 17:53:32 +02:00
bp = Blueprint("coordinator", __name__, url_prefix="/coordinator")
bp.register_blueprint(students_bp)
bp.register_blueprint(project_supervisor_bp)
bp.register_blueprint(groups_bp)