master
bel 2022-10-25 22:50:27 -06:00
parent 3788c8c9fd
commit da4937c48a
1 changed files with 1 additions and 1 deletions

View File

@ -7,6 +7,6 @@ import (
func main() {
http.ListenAndServe(":9090", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf("%s %s\n", r.Method, r.URL)
fmt.Fprintf(w, "%s %s\n", r.Method, r.URL)
}))
}