package main
import "net/http"
var landingTmpl = []byte(`
Hey, I'm imgproxy!
Hey, I'm imgproxy—a fast and secure server for processing images!
You can get me here: https://imgproxy.net/
`)
func handleLanding(reqID string, rw http.ResponseWriter, r *http.Request) {
rw.Header().Set("Content-Type", "text/html")
rw.WriteHeader(200)
rw.Write(landingTmpl)
}