zoopb/apt_windows.go

12 lines
266 B
Go

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
}