summaryrefslogtreecommitdiff
path: root/table.go
blob: e69c593af6e5d3e0770ddc83ff330636b829fe71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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")
}