(tmpl *template.Template, name string)
| 13 | ) |
| 14 | |
| 15 | func Page(tmpl *template.Template, name string) http.HandlerFunc { |
| 16 | return func(w http.ResponseWriter, r *http.Request) { |
| 17 | tmpl.ExecuteTemplate(w, name, nil) |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | type Index struct { |
| 22 | logger *slog.Logger |
nothing calls this directly
no outgoing calls
no test coverage detected