From 5340a5f2c85648e45cc71e4b449d4405dadf5696 Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Thu, 12 Feb 2015 23:54:19 -0500 Subject: [PATCH] Move code tool to sub directory --- code.go => code/code.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename code.go => code/code.go (97%) diff --git a/code.go b/code/code.go similarity index 97% rename from code.go rename to code/code.go index ffe5782..5787caf 100644 --- a/code.go +++ b/code/code.go @@ -151,7 +151,7 @@ func generate(users map[string]User, outputFile string) { } w := bufio.NewWriter(f) - template, err := template.New("").Funcs(funcMap).ParseFiles("templates/code.html") + template, err := template.New("").Funcs(funcMap).ParseFiles("../templates/code.html") if err != nil { panic(err) }