""" WebSocket URL routing для chat приложения. """ from django.urls import re_path from . import consumers chat_websocket_urlpatterns = [ re_path(r'ws/chat/(?P[0-9a-f-]+)/$', consumers.ChatConsumer.as_asgi()), re_path(r'ws/presence/$', consumers.UserPresenceConsumer.as_asgi()), ]