mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
14 lines
339 B
Python
14 lines
339 B
Python
from . import importer
|
|
|
|
importer.install()
|
|
|
|
try:
|
|
from django.core.wsgi import get_wsgi_application
|
|
except ImportError: # pragma: no cover
|
|
from django.core.handlers.wsgi import WSGIHandler
|
|
|
|
def get_wsgi_application(): # noqa
|
|
return WSGIHandler()
|
|
|
|
# this is just for the crazy ones
|
|
application = get_wsgi_application()
|