diff --git a/api/handler/health_handler.go b/api/handler/health_handler.go deleted file mode 100644 index 966178f..0000000 --- a/api/handler/health_handler.go +++ /dev/null @@ -1,14 +0,0 @@ -package handler - -import ( - "net/http" -) - -func healthRoutes() { - router.HandleFunc("/health", getHealth).Methods("GET") -} - -func getHealth(w http.ResponseWriter, r *http.Request) { - respond(w, '{"status": "OK"}', http.StatusOK) -} -