6 lines
97 B
Python
6 lines
97 B
Python
NAME = "echo"
|
|
|
|
|
|
def handle(job_data: dict) -> dict:
|
|
return {"pong": job_data.get("ping", 0)}
|