|
|
@ -40,8 +40,8 @@ class ASGIApp(engineio.ASGIApp): # pragma: no cover |
|
|
|
""" |
|
|
|
def __init__(self, socketio_server, other_asgi_app=None, |
|
|
|
static_files=None, socketio_path='socket.io', |
|
|
|
on_startup=None, on_shutdown=None): |
|
|
|
on_startup=None, on_shutdown=None, add_trailing_slash=True): |
|
|
|
super().__init__(socketio_server, other_asgi_app, |
|
|
|
static_files=static_files, |
|
|
|
engineio_path=socketio_path, on_startup=on_startup, |
|
|
|
on_shutdown=on_shutdown) |
|
|
|
on_shutdown=on_shutdown, add_trailing_slash=add_trailing_slash) |
|
|
|