更新了部分测试
This commit is contained in:
@@ -4,13 +4,13 @@ Domain Handler Registry - 集中管理所有领域的 API 和 JSONL Handlers
|
||||
使用方式:
|
||||
from sync_state_machine.domain.registry import API_HANDLERS, JSONL_HANDLERS
|
||||
|
||||
# 注册所有 API handlers
|
||||
# 添加所有 API handlers
|
||||
for handler_class in API_HANDLERS:
|
||||
api_ds.register_handler(handler_class())
|
||||
api_ds.add_handler(handler_class())
|
||||
|
||||
# 注册所有 JSONL handlers
|
||||
# 添加所有 JSONL handlers
|
||||
for handler_class in JSONL_HANDLERS:
|
||||
jsonl_ds.register_handler(handler_class(jsonl_ds))
|
||||
jsonl_ds.add_handler(handler_class(jsonl_ds))
|
||||
"""
|
||||
|
||||
# ============================================
|
||||
|
||||
Reference in New Issue
Block a user