Created
June 17, 2020 05:13
-
-
Save velotiotech/6b9097186c9dec7982ac89ec4447f78b 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 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