MCPcopy Create free account
hub / github.com/clockworknowledge/menome_processor / divide

Function divide

app/routers/processing.py:176–179  ·  view source on GitHub ↗
(x: int, y: int)

Source from the content-addressed store, hash-verified

174## Basic health check
175@router.post("/divide")
176async def divide(x: int, y: int):
177 from worker.tasks import divide
178 result = divide.delay(x, y)
179 return {"task_id": result.id}
180
181
182## Returns the status of the submitted Task

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected