From 45081145c5f81724529ce93c567104e54e602ba8 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Sun, 20 Apr 2025 00:30:24 +0200 Subject: [PATCH] Remove unused struct --- handlers/template.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/handlers/template.go b/handlers/template.go index f759332..7490e74 100644 --- a/handlers/template.go +++ b/handlers/template.go @@ -11,10 +11,6 @@ import ( var indexTemplate *template.Template var notFoundTemplate *template.Template -type templateData struct { - RequestID string -} - func (app *Application) ParseTemplates() error { t, err := template.ParseFS(assets.Templates, "public/html/index.html", "public/html/navbar.tmpl", "public/html/footer.tmpl") if err != nil {