"""Fake reference-data enums. The real `app.core.refdata` lives in the production repo. For this workspace we only need `ReconJobStatus` (consumed by `app.models.recon_job`). """ from enum import Enum class ReconJobStatus(str, Enum): CREATED = "created" RUNNING = "running" COMPLETED = "completed" FAILED = "failed" CANCELLED = "cancelled"