Refactor code structure for improved readability and maintainability

This commit is contained in:
2026-03-04 16:41:54 -05:00
parent 8ee8e5e956
commit e8f8574053
34 changed files with 7164 additions and 49 deletions
+8
View File
@@ -0,0 +1,8 @@
//go:build windows
package platform
// NewNetworkDiscoverer returns the Windows-specific NetworkDiscoverer.
func NewNetworkDiscoverer() NetworkDiscoverer {
return &WindowsNetworkDiscoverer{}
}