Remove unnecessary named import

This commit is contained in:
Lena Fuhrimann 2017-03-17 23:57:58 +01:00
parent 47917a599c
commit ae39b80fe2
3 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ import (
"os" "os"
"github.com/gorilla/mux" "github.com/gorilla/mux"
minio "github.com/minio/minio-go" "github.com/minio/minio-go"
) )
// Server is a server containing a minio client // Server is a server containing a minio client

View file

@ -4,7 +4,7 @@ import (
"log" "log"
"os" "os"
minio "github.com/minio/minio-go" "github.com/minio/minio-go"
) )
// NewMinioClient creates a new Minio client // NewMinioClient creates a new Minio client

View file

@ -7,7 +7,7 @@ import (
"path" "path"
"github.com/gorilla/mux" "github.com/gorilla/mux"
minio "github.com/minio/minio-go" "github.com/minio/minio-go"
) )
// BucketPage defines the details page of a bucket // BucketPage defines the details page of a bucket