2023-12-25 23:20:26 +03:00

16 lines
339 B
Python

import os
import django
from channels.http import AsgiHandler
from channels.routing import ProtocolTypeRouter
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
django.setup()
application = ProtocolTypeRouter(
{
"http": AsgiHandler(),
# Just HTTP for now. (We can add other protocols later.)
}
)