Skip to content

Instantly share code, notes, and snippets.

@lulinfeng
lulinfeng / main.go
Created August 19, 2018 01:47 — forked from filewalkwithme/main.go
Listening multiple ports on golang http servers (using http.Handler)
package main
import (
"net/http"
)
func main() {
go func() {
http.ListenAndServe(":8001", &fooHandler{})
}()