api_processor/api_project/wsgi.py
2025-05-06 17:29:20 +03:00

14 lines
332 B
Python

# api_project/api_project/wsgi.py
"""
WSGI config for api_project project.
It exposes the WSGI callable as a module-level variable named ``application``.
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'api_project.settings')
application = get_wsgi_application()