9 lines
108 B
Go
9 lines
108 B
Go
//go:build !linux
|
|
|
|
package netif
|
|
|
|
import "net"
|
|
|
|
func RouteAdd(_ string, _ *net.IPNet) error {
|
|
return nil
|
|
}
|