From 8e3d4b4547bb012f8c8fb37f6239b1cb3927df22 Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Tue, 19 Jul 2016 09:59:52 -0700 Subject: [PATCH] bootcfg/cli: Organize imports --- bootcfg/cli/group_describe.go | 3 ++- bootcfg/cli/group_list.go | 3 ++- bootcfg/cli/profile_describe.go | 3 ++- bootcfg/cli/profile_list.go | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/bootcfg/cli/group_describe.go b/bootcfg/cli/group_describe.go index d077c738..80768a1c 100644 --- a/bootcfg/cli/group_describe.go +++ b/bootcfg/cli/group_describe.go @@ -4,9 +4,10 @@ import ( "fmt" "os" - pb "github.com/coreos/coreos-baremetal/bootcfg/server/serverpb" "github.com/spf13/cobra" "golang.org/x/net/context" + + pb "github.com/coreos/coreos-baremetal/bootcfg/server/serverpb" ) // groupDescribeCmd describes a Group. diff --git a/bootcfg/cli/group_list.go b/bootcfg/cli/group_list.go index c498fa23..65970a51 100644 --- a/bootcfg/cli/group_list.go +++ b/bootcfg/cli/group_list.go @@ -4,9 +4,10 @@ import ( "fmt" "os" - pb "github.com/coreos/coreos-baremetal/bootcfg/server/serverpb" "github.com/spf13/cobra" "golang.org/x/net/context" + + pb "github.com/coreos/coreos-baremetal/bootcfg/server/serverpb" ) // groupListCmd lists Groups. diff --git a/bootcfg/cli/profile_describe.go b/bootcfg/cli/profile_describe.go index e1c8424e..0041ea5b 100644 --- a/bootcfg/cli/profile_describe.go +++ b/bootcfg/cli/profile_describe.go @@ -4,9 +4,10 @@ import ( "fmt" "os" - pb "github.com/coreos/coreos-baremetal/bootcfg/server/serverpb" "github.com/spf13/cobra" "golang.org/x/net/context" + + pb "github.com/coreos/coreos-baremetal/bootcfg/server/serverpb" ) // profileDescribeCmd describes a Profile. diff --git a/bootcfg/cli/profile_list.go b/bootcfg/cli/profile_list.go index bfaadab9..fa4b7f15 100644 --- a/bootcfg/cli/profile_list.go +++ b/bootcfg/cli/profile_list.go @@ -4,9 +4,10 @@ import ( "fmt" "os" - pb "github.com/coreos/coreos-baremetal/bootcfg/server/serverpb" "github.com/spf13/cobra" "golang.org/x/net/context" + + pb "github.com/coreos/coreos-baremetal/bootcfg/server/serverpb" ) // profileListCmd lists Profiles.