example-of-crud-in-django-w.../project/urls.py

9 lines
152 B
Python
Raw Normal View History

2021-07-14 16:19:03 +02:00
# proyect/urls.py
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path("", include("app.library.urls")),
]