diff options
| author | Jeff Carr <[email protected]> | 2024-12-02 10:53:50 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-02 10:53:50 -0600 |
| commit | 1c18f171c1bc9f6de5f7ce3d781e342ee85fe62c (patch) | |
| tree | 6afd49fd3c0c77827c4bfd6574385420ced4034d /apt_darwin.go | |
| parent | ba5c32d24465b1d958b20d9dba62fd2b7b2d0df1 (diff) | |
Diffstat (limited to 'apt_darwin.go')
| -rw-r--r-- | apt_darwin.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/apt_darwin.go b/apt_darwin.go new file mode 100644 index 0000000..0fc8e0f --- /dev/null +++ b/apt_darwin.go @@ -0,0 +1,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 macos yet, skipping okay") + return nil, nil +} |
