Skip to content
wsgi.py 313 B
Newer Older
Bengfort's avatar
Bengfort committed
"""
WSGI config for scheduler project.

It exposes the WSGI callable as a module-level variable named ``application``.

For more information on this file, see
https://docs.djangoproject.com/en/3.1/howto/deployment/wsgi/
"""

from django.core.wsgi import get_wsgi_application

application = get_wsgi_application()