system-pri/backend/app/examination_schedule/routes/enrollments.py

10 lines
260 B
Python
Raw Normal View History

from apiflask import APIBlueprint
bp = APIBlueprint("enrollments", __name__, url_prefix="/enrollments")
# list enrollments in examination schedule module for students, coordinator and project_supervisor
@bp.get('/')
def list_enrollments() -> dict:
pass