django-configurations/configurations/asgi.py
Finn-Thorben Sell c1cb3874f2
remove fallback onto ASGIHandler
ASGIHandler is considered a django internal api with get_asgi_application being the public counterpart.
get_asgi_application is also present since the introduction of django's asgi support so the ImportError should never occur anyways.
2021-09-09 15:01:11 +02:00

8 lines
166 B
Python

from . import importer
importer.install()
from django.core.asgi import get_asgi_application
# this is just for the crazy ones
application = get_asgi_application()