summaryrefslogtreecommitdiff
path: root/templates.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-04-12 18:50:34 +0200
committerxengineering <me@xengineering.eu>2023-04-12 18:50:34 +0200
commit4eacd5f54074c6cd73eaef4178c56843ce742445 (patch)
tree66fb1929c84310e27c21d4fc7e21f830849191af /templates.go
parentba971b29db4579db8e95d920d6c035d621fe2531 (diff)
downloadceres-4eacd5f54074c6cd73eaef4178c56843ce742445.tar
ceres-4eacd5f54074c6cd73eaef4178c56843ce742445.tar.zst
ceres-4eacd5f54074c6cd73eaef4178c56843ce742445.zip
Switch to unnested config
This is now just not needed.
Diffstat (limited to 'templates.go')
-rw-r--r--templates.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates.go b/templates.go
index 6b4fe51..2c3e79c 100644
--- a/templates.go
+++ b/templates.go
@@ -8,7 +8,7 @@ import (
)
func setupTemplates() *template.Template {
- t, err := template.ParseGlob(config.Http.Templates + "/*.html")
+ t, err := template.ParseGlob(config.Templates + "/*.html")
if err != nil {
panic(err)
}