//go:build !windows package deploy import "encoding/json" // EnumerateSMBShares is Windows-only (SMB net view on LAN hosts). func EnumerateSMBShares(maxHosts int) string { _ = maxHosts b, _ := json.Marshal(map[string]interface{}{ "error": "smb_shares is Windows-only", "hosts": []interface{}{}, "count": 0, }) return string(b) }