package main import "net/http" var landingTmpl = []byte(` Hey, I'm imgproxy!

Hey, I'm imgproxy!

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) }