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