13 lines
298 B
Python
13 lines
298 B
Python
# your_app_name/routing.py
|
|
|
|
from django.urls import path
|
|
from . import views
|
|
|
|
# HTTP 路由
|
|
# urlpatterns = [
|
|
# path('login/', views.UserView, name='userlogin'),
|
|
# ]
|
|
|
|
websocket_urlpatterns = [
|
|
path('matagent/chat', views.ChatConsumer.as_asgi()), # 替换为实际的路径和消费者类
|
|
] |