From ae39b80fe26e26c65f2e920bd8756821f37f1e5d Mon Sep 17 00:00:00 2001 From: Lena Fuhrimann <6780471+cloudlena@users.noreply.github.com> Date: Fri, 17 Mar 2017 23:57:58 +0100 Subject: [PATCH] Remove unnecessary named import --- main.go | 2 +- minio.go | 2 +- pages.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index f8fd4a4..3189d1d 100644 --- a/main.go +++ b/main.go @@ -6,7 +6,7 @@ import ( "os" "github.com/gorilla/mux" - minio "github.com/minio/minio-go" + "github.com/minio/minio-go" ) // Server is a server containing a minio client diff --git a/minio.go b/minio.go index bcc767c..cbd1b27 100644 --- a/minio.go +++ b/minio.go @@ -4,7 +4,7 @@ import ( "log" "os" - minio "github.com/minio/minio-go" + "github.com/minio/minio-go" ) // NewMinioClient creates a new Minio client diff --git a/pages.go b/pages.go index ee79802..7f37f00 100644 --- a/pages.go +++ b/pages.go @@ -7,7 +7,7 @@ import ( "path" "github.com/gorilla/mux" - minio "github.com/minio/minio-go" + "github.com/minio/minio-go" ) // BucketPage defines the details page of a bucket