From fce17c9733eb38636603e8c508c2e7936426bf2c Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 2 Dec 2019 18:29:06 +0100 Subject: [PATCH] Linkify mailbox list --- public/mailbox.html | 2 +- template.go | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/public/mailbox.html b/public/mailbox.html index 2f5cdb6..efae0d9 100644 --- a/public/mailbox.html +++ b/public/mailbox.html @@ -5,7 +5,7 @@

Mailboxes:

diff --git a/template.go b/template.go index fae5c7f..c7db0ae 100644 --- a/template.go +++ b/template.go @@ -1,7 +1,6 @@ package koushin import ( - "fmt" "html/template" "io" @@ -12,8 +11,6 @@ type tmpl struct { t *template.Template } -var _ = fmt.Printf - func (t *tmpl) Render(w io.Writer, name string, data interface{}, c echo.Context) error { return t.t.ExecuteTemplate(w, name, data) }