Golang vérifie si IP est V6

var ip net.IP

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