Files
edx-platform/openedx/core/djangoapps/heartbeat/urls.py
Mohammad Ahtasham ul Hassan 4260bd2af5 fix: fixed django40 warnings (#29655)
* fix: fixed django40 warnings
* fix: fix quality failures

Co-authored-by: UsamaSadiq <usama.sadiq@arbisoft.com>
2022-03-02 16:08:04 +05:00

11 lines
212 B
Python

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