httb/benchmark/test.go
2024-07-20 17:24:05 +03:00

6 lines
181 B
Go

package main
import ( "net/http")
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { w.Write([]byte("{}")) });
http.ListenAndServe(":8082", nil);
}