Skip to content

Instantly share code, notes, and snippets.

@joeljames
Created August 4, 2016 19:18
Show Gist options
  • Save joeljames/377f4df4feaa30253dc4fec3ecd74e00 to your computer and use it in GitHub Desktop.
Save joeljames/377f4df4feaa30253dc4fec3ecd74e00 to your computer and use it in GitHub Desktop.
Health App urls
from django.conf.urls import url
from health.views import StatusQueueView
urlpatterns = [
url(r'^queue/$',
StatusQueueView.as_view(),
name='status-queue'),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment