feat: 物联网相关代码

This commit is contained in:
ahhui
2023-08-08 17:40:28 +08:00
committed by 李强
parent 2722631276
commit b6b970f7a2
16 changed files with 238 additions and 13 deletions

View File

@@ -0,0 +1,6 @@
from django.urls import path
from device.websocket import DeviceStatusWebSocket
websocket_urlpatterns = [
path('ws/gateway_status/<str:token>/', DeviceStatusWebSocket.as_asgi()),
]