Skip to content

Instantly share code, notes, and snippets.

@2matzzz
Created March 14, 2019 12:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 2matzzz/4b5e6f542c923f2db8079c9917256d95 to your computer and use it in GitHub Desktop.
Save 2matzzz/4b5e6f542c923f2db8079c9917256d95 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"net/http"
"net/http/httputil"
)
func handler(w http.ResponseWriter, r *http.Request) {
var formatted, err = httputil.DumpRequest(r, true)
if err != nil {
fmt.Fprint(w, err)
}
w.Write(formatted)
}
func main() {
http.HandleFunc("/", handler)
http.ListenAndServe(":8080", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment