MCPcopy Create free account
hub / github.com/TheSecuredAnalyst/security-suite / api_run

Function api_run

dashboard/app.py:70–74  ·  view source on GitHub ↗
(run_id: str)

Source from the content-addressed store, hash-verified

68 return get_stats()
69
70 @app.get("/api/runs")
71 async def api_runs(limit: int = 50):
72 return list_runs(limit)
73
74 @app.get("/api/runs/{run_id}")
75 async def api_run(run_id: str):
76 run = get_run(run_id)
77 if not run:

Callers

nothing calls this directly

Calls 1

get_runFunction · 0.90

Tested by

no test coverage detected