Files
edx-platform/openedx/core/djangoapps/heartbeat/urls.py
bmedx 68e3894c17 openedx urls cleanup for Django 1.11
- Remove usage of django.urls.patterns
- Change urls tuples to lists
- Make all string view names callables
2017-11-03 16:11:41 -04:00

11 lines
218 B
Python

"""
Urls for verifying health (heartbeat) of the app.
"""
from django.conf.urls import url
from openedx.core.djangoapps.heartbeat.views import heartbeat
urlpatterns = [
url(r'^$', heartbeat, name='heartbeat'),
]