house-party/frontend/urls.py

10 lines
202 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.index),
path('create/', views.index),
path('join/', views.index),
path('room/<str:code>', views.index)
]