mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2026-04-22 23:17:23 +08:00
17 lines
228 B
Go
17 lines
228 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package pkg
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
func getRouteTable() (map[string][]*net.IPNet, error) {
|
|
return make(map[string][]*net.IPNet), nil
|
|
}
|
|
|
|
func disableDevice(list []string) error {
|
|
return nil
|
|
}
|