feat: 物联网相关代码

This commit is contained in:
ahhui
2023-08-08 17:40:28 +08:00
parent 516f0ac675
commit f61025c6db
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()),
]