From da4937c48ada91c85be6e5028e07e7b7944c5572 Mon Sep 17 00:00:00 2001 From: bel Date: Tue, 25 Oct 2022 22:50:27 -0600 Subject: [PATCH] whoops --- vanilla.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vanilla.go b/vanilla.go index 34f8f06..6fe35c4 100644 --- a/vanilla.go +++ b/vanilla.go @@ -7,6 +7,6 @@ import ( func main() { http.ListenAndServe(":9090", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - fmt.Fprintf("%s %s\n", r.Method, r.URL) + fmt.Fprintf(w, "%s %s\n", r.Method, r.URL) })) }