python-scripts/scripts/Chat-App/chat/routing.py

9 lines
243 B
Python
Raw Normal View History

from django.urls import path , include
from chat.consumers import ChatConsumer
# Here, "" is routing to the URL ChatConsumer which
# will handle the chat functionality.
websocket_urlpatterns = [
path("" , ChatConsumer.as_asgi()) ,
]