feat: publish workphone SDK deployment and API docs

This commit is contained in:
Manus AI
2026-07-14 18:10:52 +08:00
commit 021d633cc1
534 changed files with 122391 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
"""
Hook 模块 — Frida 注入通道
组件:
- FridaManager: 管理 Frida 与微信进程的连接
- HookExecutor: 将 unified 动作映射到 RPC 调用
- EventReporter: 将 Hook 事件上报到服务端
使用:
from hook import FridaManager, HookExecutor, EventReporter
mgr = FridaManager(on_event=reporter.on_hook_event)
mgr.start()
executor = HookExecutor(mgr)
result = executor.execute("send_message", {"to_id": "xxx", "content": "hello"})
"""
from .frida_manager import FridaManager
from .hook_executor import HookExecutor
from .event_reporter import EventReporter
__all__ = ["FridaManager", "HookExecutor", "EventReporter"]