Skip to content

Instantly share code, notes, and snippets.

@aballah-chamakh
Created June 29, 2019 09:53
Show Gist options
  • Save aballah-chamakh/f9b8d5894695a3b8f73f3b9b7144e189 to your computer and use it in GitHub Desktop.
Save aballah-chamakh/f9b8d5894695a3b8f73f3b9b7144e189 to your computer and use it in GitHub Desktop.
from django.urls import path
from django.conf.urls import include
from Product import urls as product_urls
urlpatterns = [
path('admin/', admin.site.urls),
path('',include(product_urls))
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment