Skip to content

Instantly share code, notes, and snippets.

View givanov's full-sized avatar
💭
¯\_(ツ)_/¯

Georgi Ivanov givanov

💭
¯\_(ツ)_/¯
View GitHub Profile

Keybase proof

I hereby claim:

  • I am givanov on github.
  • I am givanovdns (https://keybase.io/givanovdns) on keybase.
  • I have a public key ASCuCOc5dI-QNWdP5Re3LmxM06yv6VqgYdQk_0UE-2CMNQo

To claim this, I am signing this object:

@givanov
givanov / main.go
Created July 31, 2019 07:43 — 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{})
}()