API endpoint to get job status.
(job_id: str)
| 53 | |
| 54 | |
| 55 | @app.get("/docs/{job_id}") |
| 56 | async def view_docs(job_id: str): |
| 57 | """View generated documentation.""" |
| 58 | return await web_routes.view_docs(job_id) |
| 59 | |
| 60 |
nothing calls this directly
no test coverage detected