feat(02-01): create security assessment module
Some checks failed
Discord Webhook / git (push) Has been cancelled

This commit is contained in:
Mai Development
2026-01-27 15:29:56 -05:00
parent f7d263e173
commit 93c26aaf6b
2 changed files with 295 additions and 0 deletions

5
src/security/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
"""Security assessment and code analysis module."""
from .assessor import SecurityAssessor, SecurityLevel
__all__ = ["SecurityAssessor", "SecurityLevel"]