(self, connection: ServerConnection)
| 191 | return response |
| 192 | |
| 193 | def not_found(self, connection: ServerConnection) -> Response: |
| 194 | return connection.respond(http.HTTPStatus.NOT_FOUND, "Not Found") |
| 195 | |
| 196 | def route_request( |
| 197 | self, connection: ServerConnection, request: Request |