From efb67b6e3327261c642b73acca7dffda40e403ee Mon Sep 17 00:00:00 2001 From: "navid.shariaty" Date: Mon, 26 Jun 2023 00:48:24 +0330 Subject: [PATCH] fix typo --- internal/api/http/handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/api/http/handlers.go b/internal/api/http/handlers.go index 4a543dc..e0a2b64 100644 --- a/internal/api/http/handlers.go +++ b/internal/api/http/handlers.go @@ -20,7 +20,7 @@ func (server *Server) services(c *gin.Context) { Message string `json:"message"` Services []models.Service `json:"services,omitempty"` }{ - Message: "All services retrieved successfuly.", + Message: "All services retrieved successfully.", Services: server.querier.GetServices(), }) }