Bel LaPointe 2023-04-10 10:48:50 -06:00
commit f87cd725c3
1 changed files with 12 additions and 0 deletions

12
vanilla.go Normal file
View File

@ -0,0 +1,12 @@
package main
import (
"fmt"
"net/http"
)
func main() {
http.ListenAndServe(":9090", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "%s %s\n", r.Method, r.URL)
}))
}