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