(self, app: FastAPI, container: Container)
| 9 | |
| 10 | class WSController(BaseController): |
| 11 | def __init__(self, app: FastAPI, container: Container) -> None: |
| 12 | super().__init__(container=container) |
| 13 | app.add_api_websocket_route(path="/ws/{user_id}", endpoint=self.wss) |
| 14 | |
| 15 | async def wss( |
| 16 | self, |
nothing calls this directly
no outgoing calls
no test coverage detected