6 lines
146 B
Python
6 lines
146 B
Python
from django.conf.urls import url, patterns
|
|
|
|
urlpatterns = patterns('', # nopep8
|
|
url(r'^$', 'heartbeat.views.heartbeat', name='heartbeat'),
|
|
)
|