diff options
Diffstat (limited to '')
| -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()) }) } |
