mirror of
https://github.com/fosrl/newt.git
synced 2026-07-22 23:51:29 +02:00
12 lines
228 B
Go
12 lines
228 B
Go
//go:build !windows
|
|
|
|
package network
|
|
|
|
func WindowsAddRoute(destination string, gateway string, interfaceName string) error {
|
|
return nil
|
|
}
|
|
|
|
func WindowsRemoveRoute(destination string, interfaceName string) error {
|
|
return nil
|
|
}
|