Files
Aegis/backend/app/models/enums.py
Kitos bdeeed54e1
Some checks failed
Aegis CI / lint-and-test (push) Has been cancelled
feat(compliance): data classification fields and retention policies job [FASE-3.5]
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,
)