Spaces:
Sleeping
Sleeping
File size: 363 Bytes
71c1ad2 | 1 2 3 4 5 6 7 8 9 10 11 | # app/db/models/__init__.py
from app.db.models.user import UserDocument, UserRole
from app.db.models.scan_result import ScanResultDocument, RiskLevel
from app.db.models.alert import AlertDocument, AlertSeverity, AlertStatus
__all__ = [
"UserDocument", "UserRole",
"ScanResultDocument", "RiskLevel",
"AlertDocument", "AlertSeverity", "AlertStatus",
]
|