SentinelAI / app /db /models /__init__.py
sajith-0701's picture
initial deployment for HF Spaces
71c1ad2
raw
history blame contribute delete
363 Bytes
# 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",
]