#publicip
This package returns the public facing IP address of the calling client (a la https://icanhazip.com, but from Go!)
James Polera [email protected]
publicip uses Glide for dependency management. After cloning this package, run:
glide up
This package was inspired by both:
package main
import (
"fmt"
"github.com/polera/publicip"
)
func main() {
myIpAddr, err := publicip.GetIP()
if err != nil {
fmt.Printf("Error getting IP address: %s\n", err)
} else {
fmt.Printf("Public IP address is: %s", myIpAddr)
}
}