()
| 9 | ) |
| 10 | |
| 11 | func init() { |
| 12 | functions.HTTP("Foo", Foo, functions.WithFunctionPath("/foo")) |
| 13 | functions.HTTP("Bar", Bar, functions.WithFunctionPath("/bar")) |
| 14 | |
| 15 | } |
| 16 | |
| 17 | func Foo(w http.ResponseWriter, r *http.Request) { |
| 18 | response := map[string]string{ |
nothing calls this directly
no outgoing calls
no test coverage detected