Files
openlan/pkg/network/iputil.go
2025-04-20 09:22:04 +08:00

11 lines
160 B
Go

package network
import "net"
func LookupIP(name string) string {
if addr, _ := net.LookupIP(name); len(addr) > 0 {
return addr[0].String()
}
return ""
}