9 lines
228 B
Python
9 lines
228 B
Python
import os
|
|
|
|
from django.core.handlers.wsgi import WSGIHandler
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "core.settings")
|
|
|
|
application: WSGIHandler = get_wsgi_application()
|