0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-06 13:55:27 +00:00
healthchecks_healthchecks/hc/api/urls.py
Pēteris Caune c8b24495b9 Renames
2015-06-12 19:33:15 +03:00

7 lines
136 B
Python

from django.conf.urls import url
from hc.api import views
urlpatterns = [
url(r'^ping/([\w-]+)/$', views.ping, name="hc-ping"),
]