probe/nic/nic.go

12 lines
167 B
Go
Raw Normal View History

2018-10-22 17:45:28 +00:00
package nic
import (
"net"
oung "git.loafle.net/overflow/util-go/net/gateway"
)
func DiscoverGateway() (net.IP, string, error) {
return oung.DiscoverGateway()
}