17 lines
303 B
Go
17 lines
303 B
Go
package zoopb
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"os/exec"
|
|
"strings"
|
|
|
|
"go.wit.com/log"
|
|
)
|
|
|
|
// getPackageList returns the list of installed packages based on the distro
|
|
func getPackageList(distro string) (map[string]string, error) {
|
|
log.Info("zoopb: have not done macos yet, skipping okay")
|
|
return nil, nil
|
|
}
|