Created
March 30, 2019 18:49
-
-
Save pranavcode/7796a9260a2dd10d65c9ff7dc96c2622 to your computer and use it in GitHub Desktop.
Velotio - HashiCorp Consul Part 2 - Django URLs or routes for the example app
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.urls import path | |
from tweetapp import views | |
urlpatterns = [ | |
path('', views.home, name='home'), | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment