From 161f8154de0f87c7aefa3e91ea9843b1d533afcb Mon Sep 17 00:00:00 2001 From: Ulysses Souza Date: Tue, 5 May 2020 15:56:00 +0200 Subject: [PATCH] Organize imports Signed-off-by: Ulysses Souza --- cli/main.go | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/cli/main.go b/cli/main.go index 2b631f15..d2df0117 100644 --- a/cli/main.go +++ b/cli/main.go @@ -36,15 +36,14 @@ import ( "path/filepath" "strings" - // Backend registrations - _ "github.com/docker/api/azure" - "github.com/docker/api/cli/cmd/compose" - _ "github.com/docker/api/example" - "github.com/sirupsen/logrus" "github.com/spf13/cobra" + _ "github.com/docker/api/azure" + _ "github.com/docker/api/example" + "github.com/docker/api/cli/cmd" + "github.com/docker/api/cli/cmd/compose" "github.com/docker/api/cli/cmd/run" apicontext "github.com/docker/api/context" "github.com/docker/api/context/store"