12 lines
No EOL
230 B
Go
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 } |