Files
Aegis/backend/app/models/enums.py
T
2026-05-18 14:17:29 +02:00

15 lines
387 B
Python

"""ORM-level re-exports of the canonical domain enums.
The single source of truth lives in ``app.domain.enums``. This module
re-exports every enum so that existing model and router code keeps
working with ``from app.models.enums import ...``.
"""
from app.domain.enums import ( # noqa: F401
DataClassification,
TeamSide,
TechniqueStatus,
TestResult,
TestState,
)