Spaces:
Sleeping
Sleeping
File size: 371 Bytes
4904e85 | 1 2 3 4 5 6 7 8 | """Task implementations for the 911 dispatch supervisor environment."""
# NOTE: Avoid importing task modules here.
# The state machine imports `src.tasks.registry`, and importing this package-level
# module must not trigger imports that depend on the state machine (circular).
__all__ = ["SingleIncidentTask", "MultiIncidentTask", "MassCasualtyTask", "ShiftSurgeTask"]
|