summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-07 09:01:36 -0500
committerJeff Carr <[email protected]>2025-10-07 09:01:36 -0500
commit33cf831b22d29c8e2ef346537fa2487de0941eaa (patch)
tree7c0748216003f837647b84bbf89a8a78b217beae /structs.go
parent85761945ce11bd2417b1889b210f3d582f1ec211 (diff)
new package
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/structs.go b/structs.go
index 9b3da7b..27da99f 100644
--- a/structs.go
+++ b/structs.go
@@ -6,6 +6,7 @@ package main
import (
"sync"
+ "go.wit.com/lib/debian"
"go.wit.com/lib/gui/prep"
"go.wit.com/lib/protobuf/forgepb"
"go.wit.com/lib/protobuf/zoopb"
@@ -32,6 +33,6 @@ func initForge() {
func initMachine() {
if me.machine == nil {
- me.machine, _ = zoopb.InitMachine()
+ me.machine, _ = debian.InitMachine()
}
}