chore: add health-check api endpoint
Build & Push Docker Image (Backend) / build (push) Successful in 1m50s

This commit is contained in:
Flook
2026-04-26 14:23:13 +07:00
parent 40b49acfdb
commit 34e0fa8d71
3 changed files with 23 additions and 3 deletions
+7
View File
@@ -0,0 +1,7 @@
from django.urls import path
from apps.common.views import HealthCheckView
urlpatterns = [
path("health/", HealthCheckView.as_view(), name="health-check"),
]