12 lines
167 B
Go
12 lines
167 B
Go
|
package nic
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
|
||
|
oung "git.loafle.net/overflow/util-go/net/gateway"
|
||
|
)
|
||
|
|
||
|
func DiscoverGateway() (net.IP, string, error) {
|
||
|
return oung.DiscoverGateway()
|
||
|
}
|