(background_tasks: BackgroundTasks, q: str | None = None)
| 11 | |
| 12 | |
| 13 | def get_query(background_tasks: BackgroundTasks, q: str | None = None): |
| 14 | if q: |
| 15 | message = f"found query: {q}\n" |
| 16 | background_tasks.add_task(write_log, message) |
| 17 | return q |
| 18 | |
| 19 | |
| 20 | @app.post("/send-notification/{email}") |
nothing calls this directly
no test coverage detected
searching dependent graphs…