add some gcf scaffolding

This commit is contained in:
41666 2020-11-23 05:09:41 -05:00
parent 3eba2d2de8
commit d8a25024de
5 changed files with 116 additions and 0 deletions

View file

@ -0,0 +1,10 @@
package sessiondata
import (
"fmt"
"net/http"
)
func SessionData(rw http.ResponseWriter, r *http.Request) {
fmt.Fprintln(rw, "Hello world!")
}