From 4a78f0e75357eeaf1eb0f6fe405a4cd2d1cb8c2c Mon Sep 17 00:00:00 2001 From: Thomas Poignant Date: Tue, 24 Dec 2024 18:35:08 +0100 Subject: [PATCH] fix linter Signed-off-by: Thomas Poignant --- cmd/relayproxy/api/server.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/relayproxy/api/server.go b/cmd/relayproxy/api/server.go index 4ffee9c69bd..42d6aeb076e 100644 --- a/cmd/relayproxy/api/server.go +++ b/cmd/relayproxy/api/server.go @@ -4,6 +4,9 @@ import ( "context" "errors" "fmt" + "net/http" + "strings" + "github.com/aws/aws-lambda-go/lambda" "github.com/labstack/echo-contrib/echoprometheus" "github.com/labstack/echo/v4" @@ -17,8 +20,6 @@ import ( "github.com/thomaspoignant/go-feature-flag/cmd/relayproxy/service" "go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho" "go.uber.org/zap" - "net/http" - "strings" ) // New is used to create a new instance of the API server