diff --git a/services/backend/api/urls.py b/services/backend/api/urls.py index ffeb361..01a807c 100644 --- a/services/backend/api/urls.py +++ b/services/backend/api/urls.py @@ -4,7 +4,7 @@ from health_check.views import MainView from api.v1.router import router as api_v1_router urlpatterns = [ - path("", api_v1_router.urls), + path("api/v1/", api_v1_router.urls), # Health endpoint path("health", MainView.as_view(), name="health_check_home"), ]