mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-06 13:55:27 +00:00
7 lines
136 B
Python
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"),
|
|
]
|