mirror of https://github.com/databricks/cli.git
11 lines
247 B
Go
11 lines
247 B
Go
|
package tables
|
||
|
|
||
|
import "github.com/databricks/bricks/libs/cmdio"
|
||
|
|
||
|
func init() {
|
||
|
listCmd.Annotations["template"] = cmdio.Heredoc(`
|
||
|
{{white "Full Name"}} {{white "Table Type"}}
|
||
|
{{range .}}{{.FullName|green}} {{blue "%s" .TableType}}
|
||
|
{{end}}`)
|
||
|
}
|