7 lines
145 B
Python
7 lines
145 B
Python
from django.urls import re_path
|
|
|
|
from ai.chat import ChatConsumer
|
|
|
|
websocket_urlpatterns = [
|
|
re_path(r'ws/chat/$', ChatConsumer.as_asgi()),
|
|
] |