mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-13 14:22:16 +00:00
6 lines
148 B
Python
6 lines
148 B
Python
import os
|
|
import django.core.handlers.wsgi
|
|
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
|
|
application = django.core.handlers.wsgi.WSGIHandler()
|