package main import "net/http" var landingTmpl = []byte(`
You can get me here: https://github.com/imgproxy/imgproxy
`) func handleLanding(reqID string, rw http.ResponseWriter, r *http.Request) { rw.Header().Set("Content-Tyle", "text/html") rw.WriteHeader(200) rw.Write(landingTmpl) }