2015-06-11 23:44:49 +03:00

8 lines
135 B
Python

from django.conf.urls import url
from hc.front import views
urlpatterns = [
url(r'^checks/$', views.checks, name="hc-checks"),
]