(request: Request)
| 60 | |
| 61 | |
| 62 | def custom_subdomain(request: Request) -> PlainTextResponse: |
| 63 | return PlainTextResponse("Subdomain: " + request.path_params["subdomain"]) |
| 64 | |
| 65 | |
| 66 | def runtime_error(request: Request) -> None: |
nothing calls this directly
no test coverage detected