重组为 backend/clients/docs 三层结构,并清理 git 污染。
将后端迁入 backend/,完善根目录 .gitignore,删除误提交的 .mypy_cache 缓存文件。 Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
16
backend/app/algorithm_ipc/__init__.py
Executable file
16
backend/app/algorithm_ipc/__init__.py
Executable file
@@ -0,0 +1,16 @@
|
||||
"""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",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user