steeldonutcollection/steeldonutcollection/urls.py

8 lines
167 B
Python
Raw Normal View History

2022-05-05 15:40:57 +00:00
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('', include("frontend.urls")),
]