18 lines
440 B
Python
18 lines
440 B
Python
"""zesdex-security-daemon: authorized security tooling sidecar.
|
|||
|
|
|
||
|
|
Newline-delimited JSON frame protocol over stdin/stdout.
|
||
|
|
Single-threaded serialized dispatch with wall-clock timeout.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .protocol import run_daemon, SecProtocolError
|
||
|
|
from .tools import ToolRegistry, ToolResult
|
||
|
|
from .installer import TieredInstaller
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"run_daemon",
|
||
|
|
"SecProtocolError",
|
||
|
|
"ToolRegistry",
|
||
|
|
"ToolResult",
|
||
|
|
"TieredInstaller",
|
||
|
|
]
|