Files
edx-platform/common/djangoapps/heartbeat/urls.py
2013-05-03 15:08:28 -04:00

6 lines
134 B
Python

from django.conf.urls import *
urlpatterns = patterns('', # nopep8
url(r'^$', 'heartbeat.views.heartbeat', name='heartbeat'),
)