12 lines
264 B
Go
12 lines
264 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 macos yet, skipping okay")
|
||
|
return nil, nil
|
||
|
}
|