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