mirror of
https://github.com/fergalmoran/dss.api.git
synced 2025-12-22 17:28:55 +00:00
7 lines
169 B
Python
7 lines
169 B
Python
import os
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "dss.settings")
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
application = get_wsgi_application()
|