Files
python-tdd/core/urls.py

9 lines
195 B
Python
Raw Normal View History

2025-12-29 21:52:45 -05:00
from django.contrib import admin
from django.urls import path
from apps.lists.views import home_page
2025-12-29 21:52:45 -05:00
urlpatterns = [
path('admin/', admin.site.urls),
path('', home_page, name='home'),
2025-12-29 21:52:45 -05:00
]