Skip to content

Instantly share code, notes, and snippets.

@Taohid0
Created April 23, 2019 18:38
Show Gist options
  • Save Taohid0/5434377cfb1e6243dd485850daf2fcf8 to your computer and use it in GitHub Desktop.
Save Taohid0/5434377cfb1e6243dd485850daf2fcf8 to your computer and use it in GitHub Desktop.
from django.urls import path
from api.views import book
from core.views import index
urlpatterns = [
path("book/", book, name="book"),
path("", index, name="index")
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment