master
bel 2022-10-25 22:50:11 -06:00
parent 65da260ddb
commit 3788c8c9fd
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("%s %s\n", r.Method, r.URL)
}))
}