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