feat: add ThreatActorEntity domain entity with coverage analysis (Tier 4)

This commit is contained in:
2026-02-20 15:02:38 +01:00
parent 14d995b40c
commit 0d211d5156
3 changed files with 222 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ from app.domain.entities.compliance import (
ControlCoverageStatus,
)
from app.domain.entities.technique import TechniqueEntity
from app.domain.entities.threat_actor import ThreatActorEntity, ThreatActorTechniqueRef
__all__ = [
"CampaignEntity",
@@ -12,4 +13,6 @@ __all__ = [
"ComplianceFrameworkEntity",
"ControlCoverageStatus",
"TechniqueEntity",
"ThreatActorEntity",
"ThreatActorTechniqueRef",
]