rodem

Results 1 issues of rodem

Simple example code: ``` func main() { go func() { http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { json.NewEncoder(w).Encode("Hello, world!\n\n") }) http.ListenAndServe(":7000", nil) }() fasthttp.ListenAndServe(":8080", func(ctx *fasthttp.RequestCtx) { fmt.Fprintf(ctx, "Hello, world!\n\n") })...

wontfix