From df8153859c7dfae68ea7deff09e6534c86a0656e Mon Sep 17 00:00:00 2001 From: Bala FA Date: Wed, 16 Nov 2016 16:23:32 -0800 Subject: [PATCH] docs: Add comments of using canonical import paths. (#3269) --- main.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/main.go b/main.go index 8eb16fc9b..03814d857 100644 --- a/main.go +++ b/main.go @@ -14,6 +14,12 @@ * limitations under the License. */ +/* + * Below main package has canonical imports for 'go get' and 'go build' + * to work with all other clones of github.com/minio/minio repository. For + * more information refer https://golang.org/doc/go1.4#canonicalimports + */ + package main // import "github.com/minio/minio" import minio "github.com/minio/minio/cmd"