This commit is contained in:
2025-12-29 14:42:33 +08:00
parent 9f636d1c31
commit 8c4491b383
9 changed files with 37 additions and 50 deletions

View File

@@ -26,15 +26,4 @@ def main(status_code: float, body: str):
return {
"task_id": task_id,
"is_new_task": is_new_task
}
def test():
import json
with open("nodes\parse_register.json", "r") as f:
data = json.load(f)
status_code = data["status_code"]
body = data["body"]
res = main(status_code, body)
print(res)
test()
}