12 lines
163 B
Go
12 lines
163 B
Go
//go:build !linux
|
|
|
|
package netif
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
)
|
|
|
|
func GetDefaultGateway() (net.IP, error) {
|
|
return nil, fmt.Errorf("not supported on this platform")
|
|
}
|