Created
March 14, 2019 12:26
-
-
Save 2matzzz/4b5e6f542c923f2db8079c9917256d95 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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