This commit is contained in:
2025-07-15 19:09:45 +08:00
parent 01e5c9097c
commit 108a125810
13 changed files with 554 additions and 7 deletions

6
chat/url.py Normal file
View File

@@ -0,0 +1,6 @@
from django.urls import path
from .consumers import ChatConsumer
websocket_urlpatterns = [
path("ws/chat/", ChatConsumer.as_asgi()),
]