Skip to content

Instantly share code, notes, and snippets.

@DenisCangemi
Created February 6, 2018 18:18
Show Gist options
  • Save DenisCangemi/d33c3e44440014bf7a89cd340023b524 to your computer and use it in GitHub Desktop.
Save DenisCangemi/d33c3e44440014bf7a89cd340023b524 to your computer and use it in GitHub Desktop.
from django.conf.urls import url, include
from django.contrib import admin
urlpatterns = [
url(r'^admin/', admin.site.urls),
url(r'^', include('hello.urls')),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment