Skip to content

Commit

Permalink
Add "echo" as an identifier on its import to fix a linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
dehort committed Mar 4, 2024
1 parent 51254c7 commit f33a19b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion internal/common/utils/echo.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"io/ioutil"

"github.com/labstack/echo/v4"
echo "github.com/labstack/echo/v4"
)

// workaround for https://github.com/labstack/echo/issues/1356
Expand Down
2 changes: 1 addition & 1 deletion internal/common/utils/logging.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/labstack/echo/v4"
echo "github.com/labstack/echo/v4"
"github.com/mec07/cloudwatchwriter"
"github.com/spf13/viper"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/common/utils/misc.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"time"

"github.com/ghodss/yaml"
"github.com/labstack/echo/v4"
echo "github.com/labstack/echo/v4"
"github.com/qri-io/jsonschema"
"github.com/spf13/viper"
)
Expand Down

0 comments on commit f33a19b

Please sign in to comment.