This commit is contained in:
bel
2022-10-25 22:50:11 -06:00
parent 65da260ddb
commit 3788c8c9fd

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("%s %s\n", r.Method, r.URL)
}))
}