Pratyush Desai
1c097640a7
Attempt to figure out the necessary data models and applicable fields. Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
9 lines
111 B
Python
9 lines
111 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("", views.index, name="index"),
|
|
]
|
|
|