forked from GithubBackups/healthchecks
9 lines
189 B
Python
9 lines
189 B
Python
from django.conf.urls import url
|
|
|
|
from hc.front import views
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.index, name="hc-index"),
|
|
url(r'^checks/$', views.checks, name="hc-checks"),
|
|
]
|