()
| 168 | |
| 169 | @app.get("/total-count") |
| 170 | async def get_total_url_count(): |
| 171 | count = get_total_count() |
| 172 | return JSONResponse(content={"count": count}) |
| 173 | |
| 174 | @app.get("/clear-db") |
| 175 | async def clear_database(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…