yuki-sui's picture
Upload 169 files
ed71b0e verified
"""
Plugin system for security gateway.
This module provides the infrastructure for pluggable security scanners and detectors.
Allows modular threat detection that can be extended without modifying core code.
"""
from .base import ScannerPlugin, PluginRegistry, PluginMetadata
from .loader import PluginLoader
__all__ = [
"ScannerPlugin",
"PluginRegistry",
"PluginMetadata",
"PluginLoader",
]