Ensure global singletons are ready for incoming requests.
()
| 9 | |
| 10 | |
| 11 | def init_state() -> None: |
| 12 | """Ensure global singletons are ready for incoming requests.""" |
| 13 | |
| 14 | get_websocket_manager() |
| 15 | |
| 16 | |
| 17 | def get_websocket_manager() -> WebSocketManager: |
nothing calls this directly
no test coverage detected