From 11f72814a6affe379a2ddd17fc143665bc0def0d Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Mon, 10 Nov 2025 07:43:24 -0800 Subject: ignore errors --- app/fcuny-net/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/fcuny-net/main.go') diff --git a/app/fcuny-net/main.go b/app/fcuny-net/main.go index 8976964..9a8a4f2 100644 --- a/app/fcuny-net/main.go +++ b/app/fcuny-net/main.go @@ -246,6 +246,6 @@ func goImportHandler(module, repo string) http.Handler { func info() http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - fmt.Fprintf(w, "Go version: %s\n", runtime.Version()) + _, _ = fmt.Fprintf(w, "Go version: %s\n", runtime.Version()) }) } -- cgit v1.2.3