File size: 428 Bytes
ed71b0e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""

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