2018-03-30 06:05:49 +00:00
|
|
|
from django.urls import include, path
|
|
|
|
|
|
|
|
"""
|
|
|
|
This urlconf exists so we can run tests without an actual Django project
|
|
|
|
(Django expects ROOT_URLCONF to exist.) This helps the tests remain isolated.
|
|
|
|
For your project, ignore this file and add
|
|
|
|
|
|
|
|
`path('lists/', include('todo.urls')),`
|
|
|
|
|
|
|
|
to your site's urlconf.
|
|
|
|
"""
|
|
|
|
|
2019-04-12 07:09:01 +00:00
|
|
|
urlpatterns = [path("lists/", include("todo.urls"))]
|