diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-02-08T10·55+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2017-02-08T10·55+0100 |
commit | 8fac7c1a415d6ea5e41c28f4e7ab5c1ef0883997 (patch) | |
tree | 260ba1c9e7056d97e6e8e41d5c76c8ada183e2ed /main.go | |
parent | 8fb24f9f750c4d87f1f36f11ca80f86c78832be6 (diff) |
chore: Better example & gofmt
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main.go b/main.go index c33ec133d70c..158c9a566a86 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 { |