mirror of
https://github.com/fosrl/olm.git
synced 2026-02-07 21:46:40 +00:00
12 lines
206 B
Go
12 lines
206 B
Go
//go:build !windows
|
|
|
|
package network
|
|
|
|
func WindowsAddRoute(destination string, gateway string, interfaceName string) error {
|
|
return nil
|
|
}
|
|
|
|
func WindowsRemoveRoute(destination string) error {
|
|
return nil
|
|
}
|