We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 769db0d commit 6a3ac71Copy full SHA for 6a3ac71
src/socketio_app/__init__.py
@@ -19,7 +19,8 @@ def create_app(
19
test_di_container: Union[Container, None] = None,
20
) -> Router:
21
_config = test_config or AppConfig()
22
- application_init(_config, test_di_container)
+ ref = application_init(_config, test_di_container)
23
+ ref.di_container.wire(packages=["socketio_app"])
24
25
# SocketIO App
26
sio = socketio.AsyncServer(async_mode="asgi")
0 commit comments