summaryrefslogtreecommitdiff
path: root/apt_linux.go
blob: feb54d1f6efc3ae8d8826a49613aa22732b0998d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
}