Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created June 17, 2020 05:13
Show Gist options
  • Save velotiotech/6b9097186c9dec7982ac89ec4447f78b to your computer and use it in GitHub Desktop.
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
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