Files
operating-room-monitor-server/backend/app/algorithm_ipc/__init__.py

17 lines
325 B
Python
Raw Normal View History

2026-05-21 15:48:03 +08:00
"""FastAPI 与算法子进程之间的 JSONL / 白名单 JSON 协议。"""
from app.algorithm_ipc.schema import (
WhitelistSpec,
append_event_line,
events_path_for_surgery,
parse_event_obj,
)
__all__ = [
"WhitelistSpec",
"append_event_line",
"events_path_for_surgery",
"parse_event_obj",
]