Rearrange source.
[turniej.git] / src / core / wsgi.py
1 import os
2
3
4 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "core.settings")
5
6 # This application object is used by the development server
7 # as well as any WSGI server configured to use this file.
8 from django.core.wsgi import get_wsgi_application
9 application = get_wsgi_application()