From c84ae1cd555a3541005d49367bc6710c6fd0861c Mon Sep 17 00:00:00 2001 From: TwiN Date: Thu, 1 Sep 2022 20:32:04 -0400 Subject: [PATCH] refactor: Remove unused file --- core/health_status.go | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 core/health_status.go diff --git a/core/health_status.go b/core/health_status.go deleted file mode 100644 index 89e906eb..00000000 --- a/core/health_status.go +++ /dev/null @@ -1,11 +0,0 @@ -package core - -// HealthStatus is the status of Gatus -type HealthStatus struct { - // Status is the state of Gatus (UP/DOWN) - Status string `json:"status"` - - // Message is an accompanying description of why the status is as reported. - // If the Status is UP, no message will be provided - Message string `json:"message,omitempty"` -}