# -*- coding: utf-8 -*-
"""
ASGI config for Adtlas DAI Management System.

This module contains the ASGI application used for async Django applications.
It exposes the ASGI callable as a module-level variable named ``application``.

ASGI (Asynchronous Server Gateway Interface) is the spiritual successor to WSGI,
intended to provide a standard interface between async-capable Python web servers,
frameworks, and applications.

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

import os

from django.core.asgi import get_asgi_application

# Set the default Django settings module
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "core.settings")

# Get the ASGI application
application = get_asgi_application()