From c13e84a805869af262216f94674aae13b5d3b086 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 12 Sep 2025 14:52:28 -0500 Subject: [PATCH] stub in something to handle tables --- tablePB.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tablePB.go diff --git a/tablePB.go b/tablePB.go new file mode 100644 index 0000000..8cdaa38 --- /dev/null +++ b/tablePB.go @@ -0,0 +1,12 @@ +// Copyright 2025 WIT.COM Inc Licensed GPL 3.0 + +package cobol + +import ( + "go.wit.com/lib/protobuf/guipb" + "go.wit.com/log" +) + +func PrintTable(pb *guipb.Table) { + log.Info("print PB here") +}