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,7 @@
package sessionprewarm
import "net/http"
func SessionPrewarm(rw http.ResponseWriter, r *http.Request) {
rw.Write([]byte("hello work!"))
}