summaryrefslogtreecommitdiff
path: root/template.go
diff options
context:
space:
mode:
Diffstat (limited to 'template.go')
-rw-r--r--template.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/template.go b/template.go
index 3ec1c14..f31c845 100644
--- a/template.go
+++ b/template.go
@@ -11,9 +11,11 @@ import (
"text/template"
)
-const templatePath = "templates/"
-const verbatimPath = templatePath + "verbatim"
-const templateGlob = templatePath + "*.tpl"
+const (
+ templatePath = "templates/"
+ verbatimPath = templatePath + "verbatim"
+ templateGlob = templatePath + "*.tpl"
+)
//go:embed templates
var templates embed.FS