fix: fixed api prefix

This commit is contained in:
ITQ
2025-01-19 19:23:06 +03:00
parent a65fac7c9f
commit e418c6e55e
+1 -1
View File
@@ -4,7 +4,7 @@ from health_check.views import MainView
from api.v1.router import router as api_v1_router
urlpatterns = [
path("v1/", api_v1_router.urls),
path("", api_v1_router.urls),
# Health endpoint
path("health", MainView.as_view(), name="health_check_home"),
]