feat(workers): runner loop + echo handler

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
root
2026-06-01 04:43:52 +10:00
parent 3e1dcbb7f8
commit fba1ce48e4
4 changed files with 91 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
NAME = "echo"
def handle(job_data: dict) -> dict:
return {"pong": job_data.get("ping", 0)}