aboutsummaryrefslogtreecommitdiff
path: root/app/fcuny-net/main.go
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-11-10 07:43:24 -0800
committerFranck Cuny <franck@fcuny.net>2025-11-10 07:43:24 -0800
commit11f72814a6affe379a2ddd17fc143665bc0def0d (patch)
treec3abba1c252799b7941c353a1a67503bc4ae3963 /app/fcuny-net/main.go
parentreplacing my static website with a simple web app (diff)
downloadx-11f72814a6affe379a2ddd17fc143665bc0def0d.tar.gz
ignore errors
Diffstat (limited to 'app/fcuny-net/main.go')
-rw-r--r--app/fcuny-net/main.go2
1 files changed, 1 insertions, 1 deletions
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())
})
}