mirror of
https://github.com/wahyd4/links.git
synced 2026-08-08 21:04:53 +10:00
7 lines
164 B
Python
7 lines
164 B
Python
import os
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'core.settings')
|
|
|
|
application = get_wsgi_application()
|