42_ft_transcendence/chat/routing.py
2024-03-31 10:59:33 +02:00

10 lines
280 B
Python

from django.urls import re_path
from . import consumersChat
from . import consumersNotice
websocket_urlpatterns = [
re_path(r'ws/chat/(?P<chat_id>\d+)$', consumersChat.ChatConsumer.as_asgi()),
re_path(r'ws/chat/notice$', consumersNotice.ChatNoticeConsumer.as_asgi()),
]