Add default django asgi handler

This commit is contained in:
Tom Hubrecht 2022-06-29 11:09:34 +02:00
parent 9ab5d95c30
commit a334241c4f

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(),
}
)