diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/templates.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/templates.go b/view/templates.go index d08f95e..7b51860 100644 --- a/view/templates.go +++ b/view/templates.go @@ -10,6 +10,6 @@ var htmlFS embed.FS var html *template.Template -func Init() { +func init() { html = template.Must(template.New("html").ParseFS(htmlFS, "html/*.html")) } |