diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-07-29 21:43:59 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-07-29 21:43:59 +0200 |
commit | c43c6d168053d9c9abb2999457b625e32ab1c7b2 (patch) | |
tree | 42e99f5118baea9e34f39b91440eb4898da0bc26 /src/http.go | |
parent | 38230599d68ae097e886222f5c2384fe6dd9b5bc (diff) |
Run go fmt
Diffstat (limited to 'src/http.go')
-rw-r--r-- | src/http.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http.go b/src/http.go index 362a2cd..db1316f 100644 --- a/src/http.go +++ b/src/http.go @@ -62,7 +62,7 @@ func chain(xs ...middleware) middleware { func firstHandler(next http.Handler) http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { ctx := context.WithValue(r.Context(), "td", &templateData{ - Debugp: Debugp, + Debugp: Debugp, Printers: i18n.Printers, }) next.ServeHTTP(w, r.WithContext(ctx)) |