Basic index view created

This commit is contained in:
2025-05-29 14:16:14 -04:00
parent 2e6b731e95
commit c4bdf8f589
4 changed files with 14 additions and 1 deletions

View File

@ -0,0 +1,8 @@
from django.urls import path
from . import views
# Define a list of url patterns
urlpatterns = [
path('', views.index)
]