A simple wrapper for holding connection information
| 222 | |
| 223 | @dataclass |
| 224 | class _SanicCarrier: |
| 225 | """A simple wrapper for holding connection information""" |
| 226 | |
| 227 | request: request.Request[Sanic[Any, Any], Any] |
| 228 | """The current request object""" |
| 229 | |
| 230 | websocket: WebSocketConnection |
| 231 | """A handle to the current websocket""" |