(self, ws_url: str)
| 797 | return patterns |
| 798 | |
| 799 | def matches(self, ws_url: str) -> bool: |
| 800 | return url_matches(self._base_url, ws_url, self.url, True) |
| 801 | |
| 802 | async def handle(self, websocket_route: "WebSocketRoute") -> None: |
| 803 | coro_or_future = self.handler(websocket_route) |
nothing calls this directly
no test coverage detected