about summary refs log tree commit diff stats
path: root/internal/sitemap/sitemap.go
diff options
context:
space:
mode:
authorAlan Pearce2024-06-27 13:34:21 +0200
committerAlan Pearce2024-06-27 13:34:21 +0200
commit879cc25421c66a959ab801f0937b4264a461fc7e (patch)
tree29141c22ef84cfc36ba74302b14546c21dbef199 /internal/sitemap/sitemap.go
parentd07ec650aafcfe4692bba8f481bc3cb8204cd4b0 (diff)
downloadwebsite-879cc25421c66a959ab801f0937b4264a461fc7e.tar.lz
website-879cc25421c66a959ab801f0937b4264a461fc7e.tar.zst
website-879cc25421c66a959ab801f0937b4264a461fc7e.zip
use pointer to config in builder & templates
Diffstat (limited to 'internal/sitemap/sitemap.go')
-rw-r--r--internal/sitemap/sitemap.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/sitemap/sitemap.go b/internal/sitemap/sitemap.go
index a38e277..a45ebd9 100644
--- a/internal/sitemap/sitemap.go
+++ b/internal/sitemap/sitemap.go
@@ -13,9 +13,9 @@ type Sitemap struct {
 	Sitemap *sitemap.Sitemap
 }
 
-func New(cfg config.Config) *Sitemap {
+func New(cfg *config.Config) *Sitemap {
 	return &Sitemap{
-		config:  &cfg,
+		config:  cfg,
 		Sitemap: sitemap.New(),
 	}
 }