14 lines
257 B
Go
14 lines
257 B
Go
|
// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
|
||
|
// Use of this source code is governed by the GPL 3.0
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
log "go.wit.com/log"
|
||
|
"go.wit.com/toolkits/tree"
|
||
|
)
|
||
|
|
||
|
func showTable(t *tree.Node) {
|
||
|
log.Info("should show table here")
|
||
|
}
|