forked from GithubBackups/healthchecks
10 lines
249 B
Python
10 lines
249 B
Python
from django.conf.urls import url
|
|
|
|
from hc.api import views
|
|
|
|
urlpatterns = [
|
|
url(r'^ping/([\w-]+)/$', views.ping, name="hc-ping-slash"),
|
|
url(r'^ping/([\w-]+)$', views.ping, name="hc-ping"),
|
|
url(r'^api/v1/checks/$', views.create_check),
|
|
]
|