From 609f2c86328d24390019545f7a1a7666307ca679 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Fri, 19 Jul 2019 06:07:33 +0200 Subject: [PATCH] Used goimports to fix import order Keeps the list sorted and prevents future merge conflicts. --- cobra/cmd/init.go | 5 +++-- cobra/cmd/project.go | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/cobra/cmd/init.go b/cobra/cmd/init.go index 63397d11..dcf5ada4 100644 --- a/cobra/cmd/init.go +++ b/cobra/cmd/init.go @@ -15,10 +15,11 @@ package cmd import ( "fmt" - "github.com/spf13/cobra" - "github.com/spf13/viper" "os" "path" + + "github.com/spf13/cobra" + "github.com/spf13/viper" ) var ( diff --git a/cobra/cmd/project.go b/cobra/cmd/project.go index dd2f7ea2..46f12cfb 100644 --- a/cobra/cmd/project.go +++ b/cobra/cmd/project.go @@ -2,9 +2,10 @@ package cmd import ( "fmt" - "github.com/spf13/cobra/cobra/tpl" "os" "text/template" + + "github.com/spf13/cobra/cobra/tpl" ) // Project contains name, license and paths to projects.