feat: add all application source code
- apps/api: FastAPI backend with Dockerfile - apps/web: Next.js frontend with Dockerfile - apps/sensor: Signal collection agent - packages: shared packages Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
17
apps/api/src/plugins/security/__init__.py
Normal file
17
apps/api/src/plugins/security/__init__.py
Normal file
@@ -0,0 +1,17 @@
|
||||
"""
|
||||
AWOOOI Security Plugins
|
||||
"""
|
||||
|
||||
from .privacy_shield import (
|
||||
PrivacyShield,
|
||||
privacy_shield,
|
||||
SensitiveDataType,
|
||||
RedactionResult,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"PrivacyShield",
|
||||
"privacy_shield",
|
||||
"SensitiveDataType",
|
||||
"RedactionResult",
|
||||
]
|
||||
Reference in New Issue
Block a user