Add source models

This commit is contained in:
2026-01-29 21:21:20 +00:00
parent 93f4c55492
commit 0f4c01898f

7
src/models/__init__.py Normal file
View File

@@ -0,0 +1,7 @@
"""Data models for Shell Safe Validator."""
from .severity import Severity
from .rule import Rule
from .finding import Finding
__all__ = ["Severity", "Rule", "Finding"]