Skip to content

Instantly share code, notes, and snippets.

@chapimenge3
Created April 28, 2021 20:14
Show Gist options
  • Save chapimenge3/7f78143fee814c7dad4cd43f9c4c9c55 to your computer and use it in GitHub Desktop.
Save chapimenge3/7f78143fee814c7dad4cd43f9c4c9c55 to your computer and use it in GitHub Desktop.
from django.contrib import admin
from django.urls import path, include # new
urlpatterns = [
path('', include('Todo.urls')), # new
path('admin/', admin.site.urls),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment