From 019ff4aff71fd01a4f973c7c38657ff09769289e Mon Sep 17 00:00:00 2001 From: Mahad Zaryab Date: Sun, 27 Oct 2024 12:32:55 -0400 Subject: [PATCH] Fix Lint Error Signed-off-by: Mahad Zaryab --- cmd/query/app/apiv3/http_gateway.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/query/app/apiv3/http_gateway.go b/cmd/query/app/apiv3/http_gateway.go index 928250b4373..6092c8304cd 100644 --- a/cmd/query/app/apiv3/http_gateway.go +++ b/cmd/query/app/apiv3/http_gateway.go @@ -60,7 +60,7 @@ func (h *HTTPGateway) RegisterRoutes(router *mux.Router) { // addRoute adds a new endpoint to the router with given path and handler function. // This code is mostly copied from ../http_handler. -func (h *HTTPGateway) addRoute( +func (*HTTPGateway) addRoute( router *mux.Router, f func(http.ResponseWriter, *http.Request), route string,