chat v3
This commit is contained in:
SDE
2023-08-11 23:25:28 +03:00
parent aeb90e106e
commit 78ade08e65
7 changed files with 83 additions and 4 deletions

View File

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