summaryrefslogtreecommitdiff
path: root/apt_windows.go
blob: feec10470ffcaca7e657a1218c0e6f66d880cb5a (plain)
1
2
3
4
5
6
7
8
9
10
11
package zoopb

import (
	"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 windows yet, skipping okay")
	return nil, nil
}