Chat advance

This commit is contained in:
Xamora
2023-11-27 23:31:31 +01:00
parent 8bce7d33ca
commit b12c03074a
10 changed files with 21 additions and 3 deletions

6
chat/routing.py Normal file
View File

@ -0,0 +1,6 @@
from django.urls import re_path
from . import consumers
websocket_urlpatterns = [
re_path(r'ws/socket-server/', consumers.ChatConsumer.as_asgi())
]