Refactor modules

This commit is contained in:
Owen
2025-11-24 17:04:33 -05:00
parent 7ae705b1f1
commit 20b3331fff
15 changed files with 71 additions and 1000 deletions

View File

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