From 9864dd7ab79aacd749d5ac5a7a7c8e416b22ffe0 Mon Sep 17 00:00:00 2001 From: archita-ekkirala Date: Thu, 5 Sep 2024 11:20:15 -0500 Subject: [PATCH] LANTERN-734: Fixing lintr --- endpointmanager/cmd/chplquerier/main.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/endpointmanager/cmd/chplquerier/main.go b/endpointmanager/cmd/chplquerier/main.go index 920a5baef..2c352aaac 100644 --- a/endpointmanager/cmd/chplquerier/main.go +++ b/endpointmanager/cmd/chplquerier/main.go @@ -2,15 +2,15 @@ package main import ( "context" - "net/http" - "strings" - "time" - "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/chplquerier" "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/config" "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/endpointmanager/postgresql" "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" log "github.com/sirupsen/logrus" + "net/http" + "os" + "strings" + "time" "github.com/spf13/viper" )