rmmagent/agent/software/software_unix.go
2022-06-22 15:40:42 -07:00

12 lines
No EOL
230 B
Go

//go:build !windows
// +build !windows
package software
func GetInstalledSoftware() ([]Software, error) {
return []Software{}, nil
}
func InstallChoco() {}
func InstallWithChoco(name string) (string, error) { return "", nil }