Last active
March 12, 2019 21:28
-
-
Save jayhale/6f9970b05a2a3cfc2cc51653ee32b924 to your computer and use it in GitHub Desktop.
Django on Zeit Now: now-django-example/example_app/urls.py
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
# now-django-example/example_app/urls.py | |
from django.urls import path | |
from example.views import index | |
urlpatterns = [ | |
path('', index), | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment