old test code

This commit is contained in:
Jeff Carr 2025-02-07 19:11:00 -06:00
parent d8a2e56b88
commit 812fd3eb50
1 changed files with 1 additions and 3 deletions

4
apt.go
View File

@ -2,8 +2,6 @@ package zoopb
import ( import (
"fmt" "fmt"
"go.wit.com/log"
) )
// init the installed package list // init the installed package list
@ -25,7 +23,7 @@ func (me *Machine) initPackages() {
new1.Name = pkg new1.Name = pkg
new1.Version = version new1.Version = version
me.Packages.Append(new1) me.Packages.Append(new1)
log.Info("added", new1.Name, "failed") // log.Info("added", new1.Name, "failed")
} }
} }