Skip to content

Instantly share code, notes, and snippets.

@Abhibob
Abhibob / main.go
Created June 3, 2020 17:05 — 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{})
}()