coins-demo/base_urls.py

14 lines
361 B
Python
Raw Normal View History

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"))]