Files
lms-backend/apps/common/urls.py
T
Flook 34e0fa8d71
Build & Push Docker Image (Backend) / build (push) Successful in 1m50s
chore: add health-check api endpoint
2026-04-26 14:23:13 +07:00

7 lines
163 B
Python

from django.urls import path
from apps.common.views import HealthCheckView
urlpatterns = [
path("health/", HealthCheckView.as_view(), name="health-check"),
]