Files
videocall-app/backend/apps/rooms/routing.py
september 54a81cbdcf init
2025-09-03 06:51:24 -07:00

8 lines
209 B
Python

# rooms/routing.py - WebSocket URL routing
from django.urls import path
from apps.rooms import consumers
websocket_urlpatterns = [
path('ws/room/<str:room_id>/', consumers.VideoCallConsumer.as_asgi()),
]