From 44542cede88e50dab025b93c5ac4ba043b601c94 Mon Sep 17 00:00:00 2001 From: pilotso11 Date: Sun, 1 Jan 2023 22:18:45 +0000 Subject: [PATCH] go fmt and goimports - to trigger CI again and see if it completes on macos go1.15 --- providers/cognito/cognito.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/providers/cognito/cognito.go b/providers/cognito/cognito.go index d6f488f51..ff4bee58d 100644 --- a/providers/cognito/cognito.go +++ b/providers/cognito/cognito.go @@ -4,11 +4,12 @@ import ( "bytes" "encoding/json" "fmt" - "github.com/markbates/goth" - "golang.org/x/oauth2" "io" "io/ioutil" "net/http" + + "github.com/markbates/goth" + "golang.org/x/oauth2" ) // Provider is the implementation of `goth.Provider` for accessing AWS Cognito.