(self, path: str)
| 183 | self.routes[path] = callback |
| 184 | |
| 185 | def enable_gzip(self, path: str) -> None: |
| 186 | self.gzip_routes.add(path) |
| 187 | |
| 188 | def set_redirect(self, from_: str, to: str) -> None: |
| 189 | def handle_redirect(request: http.Request) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected