Golang überprüfen, ob IP v6 ist

var ip net.IP

if ip.To4() == nil {
  //Is ipv6
}
Splendid-est Swan