feat: 视频与控制程序合并

This commit is contained in:
2026-04-04 23:25:52 +08:00
parent 1a41905d4c
commit b0dcf7b571
17 changed files with 1674 additions and 554 deletions

View File

@@ -0,0 +1,9 @@
from django.urls import re_path
from .consumers import ControlConsumer
websocket_urlpatterns = [
re_path(r"^ws/control/$", ControlConsumer.as_asgi()),
]