mirror of
https://github.com/Rushilwiz/house-party.git
synced 2025-04-20 03:20:17 -04:00
7 lines
94 B
Python
7 lines
94 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.index)
|
|
]
|