stub in something to handle tables

This commit is contained in:
Jeff Carr 2025-09-12 14:52:28 -05:00
parent 242e30e543
commit 5856b41d42
1 changed files with 12 additions and 0 deletions

12
tablePB.go Normal file
View File

@ -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")
}