func hello()

in sample-apps/go/server/main.go [41:48]


func hello(w http.ResponseWriter, _ *http.Request) {
	url, exists := os.LookupEnv("NEXT_SERVER")
	if !exists {
		fmt.Fprintf(w, "hello\n")
	} else {
		fmt.Fprintf(w, "%s\n", remoteHello(url))
	}
}