From 9a426dbd72a8d83f09edfc0725248d080a63b9a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AC=A6=E9=94=A6=E8=BE=89?= Date: Fri, 11 Aug 2023 17:44:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=96=87=E4=BB=B6=20routing.?= =?UTF-8?q?py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/application/routing.py | 2 -- 1 file changed, 2 deletions(-) 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, ]