summaryrefslogtreecommitdiff
path: root/apt_windows.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-02 10:53:50 -0600
committerJeff Carr <[email protected]>2024-12-02 10:53:50 -0600
commit1c18f171c1bc9f6de5f7ce3d781e342ee85fe62c (patch)
tree6afd49fd3c0c77827c4bfd6574385420ced4034d /apt_windows.go
parentba5c32d24465b1d958b20d9dba62fd2b7b2d0df1 (diff)
stub in windows and darwin files. golang is neatv0.0.15v0.0.14
Diffstat (limited to 'apt_windows.go')
-rw-r--r--apt_windows.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/apt_windows.go b/apt_windows.go
new file mode 100644
index 0000000..feec104
--- /dev/null
+++ b/apt_windows.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 windows yet, skipping okay")
+ return nil, nil
+}