* fix: fixed django40 warnings * fix: fix quality failures Co-authored-by: UsamaSadiq <usama.sadiq@arbisoft.com>
11 lines
212 B
Python
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'),
|
|
]
|