diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-11-10 07:43:24 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-11-10 07:43:24 -0800 |
| commit | 11f72814a6affe379a2ddd17fc143665bc0def0d (patch) | |
| tree | c3abba1c252799b7941c353a1a67503bc4ae3963 /app/fcuny-net | |
| parent | replacing my static website with a simple web app (diff) | |
| download | x-11f72814a6affe379a2ddd17fc143665bc0def0d.tar.gz | |
ignore errors
Diffstat (limited to 'app/fcuny-net')
| -rw-r--r-- | app/fcuny-net/main.go | 2 |
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()) }) } |
