(self, connection: ServerConnection)
| 185 | return response |
| 186 | |
| 187 | def not_found(self, connection: ServerConnection) -> Response: |
| 188 | return connection.respond(http.HTTPStatus.NOT_FOUND, "Not Found") |
| 189 | |
| 190 | def route_request( |
| 191 | self, connection: ServerConnection, request: Request |