Add default django asgi handler

This commit is contained in:
Tom Hubrecht 2022-06-29 11:09:34 +02:00
parent a01e11e45b
commit 1ae5c80f76

View file

@ -1,6 +1,6 @@
from channels.auth import AuthMiddlewareStack
from channels.http import AsgiHandler
from channels.routing import ProtocolTypeRouter, URLRouter
from django.core.asgi import get_asgi_application
from django.urls import path
from kfet.routing import KFRouter
@ -15,6 +15,6 @@ application = ProtocolTypeRouter(
]
)
),
"http": AsgiHandler,
"http": get_asgi_application(),
}
)