subbed in tables

This commit is contained in:
Jeff Carr 2025-02-13 20:10:55 -06:00
parent 08a5b198c7
commit 1e79d31a02
2 changed files with 4 additions and 4 deletions

View File

@ -23,7 +23,7 @@ custom:
GO111MODULE=off go build -v -work -buildmode=blah
clean:
rm -f gocui gocui.so
rm -f gocui gocui.so go.*
rm -f *.pb.go *.patch
go-mod-clean --purge

View File

@ -4,10 +4,10 @@
package main
import (
log "go.wit.com/log"
"go.wit.com/toolkits/tree"
"go.wit.com/lib/protobuf/guipb"
"go.wit.com/log"
)
func showTable(t *tree.Node) {
func showTable(t *guipb.Table) {
log.Info("should show table here")
}