""" 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", ]