From 68a88ad30c266145afc17761b97daa14a2fca2f3 Mon Sep 17 00:00:00 2001 From: valitovgaziz Date: Sat, 11 Oct 2025 09:52:51 +0500 Subject: [PATCH] modified: serv_nginx/api_bb/internal/routes/routes.go fix heach check --- serv_nginx/api_bb/internal/routes/routes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serv_nginx/api_bb/internal/routes/routes.go b/serv_nginx/api_bb/internal/routes/routes.go index f1c6a75..b1d586a 100644 --- a/serv_nginx/api_bb/internal/routes/routes.go +++ b/serv_nginx/api_bb/internal/routes/routes.go @@ -35,7 +35,7 @@ func SetupRouter(db *gorm.DB, config *config.Config) http.Handler { userHandler := handlers.NewUserHandler(authService) // Health routes - r.Mount("/", healthHandler.Routes()) + healthHandler.Routes() // API v1 routes r.Route("/v1", func(r chi.Router) {