Revert "Going from a REPL to a TUI"

This reverts commit 0162c14c1d.
This commit is contained in:
2026-01-05 10:32:57 +00:00
parent 0162c14c1d
commit 8d1e7c962f
9 changed files with 151 additions and 460 deletions
+1 -5
View File
@@ -1,10 +1,7 @@
// Package devices will define the available devices we can communicate with
package devices
import (
"esdi/peripheral/types"
"fmt"
)
import "esdi/peripheral/types"
// IDs for our devices. They need to be correctly mapped on the devices
// themselves so we can discover them
@@ -69,7 +66,6 @@ func (dCMD *DeviceCMD) Run(args []string) (types.Command, []byte, error) {
}
// Run the function
fmt.Printf("%s command called: %+v\n", dCMD.GetName(), args)
return dCMD.Fn(dCMD, args)
}