diff --git a/backend/application/routing.py b/backend/application/routing.py index 6f8bf02..d4df9f8 100644 --- a/backend/application/routing.py +++ b/backend/application/routing.py @@ -1,9 +1,7 @@ # -*- coding: utf-8 -*- from django.urls import path from application.websocketConfig import MegCenter -from device.routing import websocket_urlpatterns as device_ws_url websocket_urlpatterns = [ path('ws//', MegCenter.as_asgi()), # consumers.DvadminWebSocket 是该路由的消费者 - *device_ws_url, ]