10 lines
198 B
Python
10 lines
198 B
Python
|
from django.urls import path
|
||
|
|
||
|
from frontend.views import DemoView, RoomView
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('', DemoView.as_view()),
|
||
|
path('room/<str:room_name>/', RoomView.as_view(), name='room'),
|
||
|
]
|
||
|
|