(w http.ResponseWriter, r *http.Request)
| 14 | } |
| 15 | |
| 16 | func HelloWorld(w http.ResponseWriter, r *http.Request) { |
| 17 | vars := ofctx.VarsFromCtx(r.Context()) |
| 18 | fmt.Fprintf(w, "Hello, %s!\n", vars["greeting"]) |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected