Last active
July 9, 2022 16:33
-
-
Save jayhale/1c380efdc9d5f46b6225dfede503c2d1 to your computer and use it in GitHub Desktop.
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
# vercel-django-example/example/urls.py | |
# https://github.com/jayhale/vercel-django-example/blob/main/example/urls.py#L7 | |
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
Line 4 should be "from".