mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-04 19:18:21 +00:00
9 lines
197 B
Python
9 lines
197 B
Python
# drawshare/urls.py
|
|
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.index, name='index'),
|
|
url(r'^(?P<room_name>[^/]+)/$', views.room, name='room'),
|
|
] |