From 8fac7c1a415d6ea5e41c28f4e7ab5c1ef0883997 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 8 Feb 2017 11:55:59 +0100 Subject: chore: Better example & gofmt --- main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index c33ec133d7..158c9a566a 100644 --- a/main.go +++ b/main.go @@ -1,8 +1,8 @@ package main import ( - "os" "fmt" + "os" "github.com/tazjin/kontemplate/context" "github.com/tazjin/kontemplate/templater" @@ -22,10 +22,10 @@ func main() { os.Exit(1) } - fmt.Fprintf(os.Stderr,"Applying cluster %s\n", c.Name) + fmt.Fprintf(os.Stderr, "Applying cluster %s\n", c.Name) for _, rs := range c.ResourceSets { - fmt.Fprintf(os.Stderr,"Applying resource %s with values %v\n", rs.Name, rs.Values) + fmt.Fprintf(os.Stderr, "Applying resource %s with values %v\n", rs.Name, rs.Values) resources, err := templater.LoadAndPrepareTemplates(c) if err != nil { -- cgit 1.4.1