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