(request: Request)
| 42 | def healthz(): |
| 43 | return success(payment_service.health_payload()) |
| 44 | |
| 45 | |
| 46 | @router.get("/api/accounts") |
| 47 | def list_accounts(): |
| 48 | return success(payment_service.list_accounts()) |
| 49 | |
| 50 |
nothing calls this directly
no test coverage detected