Skip to content

Instantly share code, notes, and snippets.

@pranavcode
Created March 30, 2019 18:49
Show Gist options
  • Save pranavcode/7796a9260a2dd10d65c9ff7dc96c2622 to your computer and use it in GitHub Desktop.
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
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