mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-04 02:58:16 +00:00
8 lines
183 B
Python
8 lines
183 B
Python
# drawshare/routing.py
|
|
from django.conf.urls import url
|
|
|
|
from . import consumers
|
|
|
|
websocket_urlpatterns = [
|
|
url(r'^ws/drawshare/(?P<room_name>[^/]+)/$', consumers.DrawConsumer),
|
|
] |