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
+2 -1
View File
@@ -15,8 +15,9 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('apps.common.urls')),
]