Convert windows working not using netsh route

This commit is contained in:
Owen
2025-11-24 16:05:51 -05:00
parent 9b2b5cc22e
commit e238ee4d69
8 changed files with 235 additions and 144 deletions

11
olm/route_notwindows.go Normal file
View File

@@ -0,0 +1,11 @@
//go:build !windows
package olm
func WindowsAddRoute(destination string, gateway string, interfaceName string) error {
return nil
}
func WindowsRemoveRoute(destination string) error {
return nil
}