sample-functions-framework-go/hello.go (
8
lines of code) (
raw
):
package hello import ( "fmt" "net/http" ) func HelloWorld(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, "hello, world") }