()
| 9 | ) |
| 10 | |
| 11 | func init() { |
| 12 | functions.HTTP("HelloWorld", HelloWorld, |
| 13 | functions.WithFunctionPath("/{greeting}")) |
| 14 | } |
| 15 | |
| 16 | func HelloWorld(w http.ResponseWriter, r *http.Request) { |
| 17 | vars := ofctx.VarsFromCtx(r.Context()) |
nothing calls this directly
no outgoing calls
no test coverage detected