11 lines
234 B
Python
11 lines
234 B
Python
from django.urls import re_path, path
|
|
|
|
from . import consumers
|
|
|
|
|
|
|
|
websocket_urlpatterns = [
|
|
re_path("ws/anonChat/", consumers.AnonymChatConsumer.as_asgi()),
|
|
re_path("ws/AnonVoice/", consumers.AnonymVoiceConsumer.as_asgi()),
|
|
]
|