From 50ffc04ab26ff8f6188d3f47bb8e4f89c50ae17b Mon Sep 17 00:00:00 2001 From: Fei Xu Date: Sat, 19 May 2018 07:13:34 +0800 Subject: [PATCH] gofmt the project files (#205) --- version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.go b/version.go index 97bcd30..2206716 100644 --- a/version.go +++ b/version.go @@ -17,15 +17,15 @@ package cmd import ( "fmt" - "github.com/virtual-kubelet/virtual-kubelet/version" "github.com/spf13/cobra" + "github.com/virtual-kubelet/virtual-kubelet/version" ) // versionCmd represents the version command var versionCmd = &cobra.Command{ Use: "version", Short: "Show the version of the program", - Long: `Show the version of the program`, + Long: `Show the version of the program`, Run: func(cmd *cobra.Command, args []string) { fmt.Printf("Version: %s, Built: %s", version.Version, version.BuildTime) },