Files
apis.cardplayersunited.com/app/asgi.py

17 lines
391 B
Python
Raw Normal View History

2026-02-09 11:06:47 -05:00
"""
ASGI config for application project.
It exposes the ASGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/3.1/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
2026-02-10 03:01:40 -05:00
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'app.settings')
2026-02-09 11:06:47 -05:00
application = get_asgi_application()