Created
August 13, 2017 16:58
-
-
Save harshityadav95/bf9d5872dcedf264aa677f69dbd40301 to your computer and use it in GitHub Desktop.
urls.py in django project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.conf.urls import url | |
from . import views | |
urlpatterns = [ | |
url(r'^$', views.home, name='home'), | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment