mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
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.
8 lines
166 B
Python
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()
|