mirror of
https://github.com/tanrax/python-api-frameworks-benchmark
synced 2026-01-09 23:03:37 +01:00
12 lines
253 B
Python
12 lines
253 B
Python
"""WSGI config for benchmark project."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import os
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "django_project.settings")
|
|
|
|
application = get_wsgi_application()
|