add missing imports to templ files
Alan Pearce alan@alanpearce.eu
Sun, 29 Sep 2024 09:53:59 +1300
2 files changed, 6 insertions(+), 2 deletions(-)
M templates/page.templ → templates/page.templ
@@ -1,9 +1,10 @@ package templates import ( + "context" + "go.alanpearce.eu/website/internal/config" + "io" "io/fs" - - "go.alanpearce.eu/website/internal/config" "net/url" )
M templates/post.templ → templates/post.templ
@@ -1,7 +1,10 @@ package templates import ( + "context" + "io" "time" + "go.alanpearce.eu/website/internal/config" "go.alanpearce.eu/website/internal/content" )