pmessage/frontend/urls.py

10 lines
198 B
Python
Raw Normal View History

2020-11-22 10:10:32 +00:00
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'),
]