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