diff options
author | xengineering <me@xengineering.eu> | 2024-05-07 21:35:40 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-07 21:35:40 +0200 |
commit | 5b3f0a81abea93b198825b5537297f3f04d1f7c1 (patch) | |
tree | 64dc1a768019f28cc7c63c86faa859e8f59092ae /view/templates.go | |
parent | 75c1270c86ac17d056161714ac32a57113696d21 (diff) | |
download | ceres-5b3f0a81abea93b198825b5537297f3f04d1f7c1.tar ceres-5b3f0a81abea93b198825b5537297f3f04d1f7c1.tar.zst ceres-5b3f0a81abea93b198825b5537297f3f04d1f7c1.zip |
view: Use init() function to parse templates
This makes it unnecessary to call this functionality from main().
Diffstat (limited to 'view/templates.go')
-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")) } |