Skip to content

Instantly share code, notes, and snippets.

@antunesleo
Last active May 12, 2023 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antunesleo/9441a2dbffed9a8bcaa5fd5c5aebf6dc to your computer and use it in GitHub Desktop.
Save antunesleo/9441a2dbffed9a8bcaa5fd5c5aebf6dc to your computer and use it in GitHub Desktop.
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path("admin/", admin.site.urls),
path("", include("notes.urls")),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment