get_short.go 168 B

12345678
  1. package web
  2. import "net/http"
  3. // handleGetShort handles path /<short>
  4. func handleGetShort(w http.ResponseWriter, r *http.Request) {
  5. w.Write([]byte("Hello short"))
  6. }