mirror of https://github.com/databricks/cli.git
11 lines
268 B
Go
11 lines
268 B
Go
|
package schemas
|
||
|
|
||
|
import "github.com/databricks/bricks/libs/cmdio"
|
||
|
|
||
|
func init() {
|
||
|
listCmd.Annotations["template"] = cmdio.Heredoc(`
|
||
|
{{white "Full Name"}} {{white "Owner"}} {{white "Comment"}}
|
||
|
{{range .}}{{.FullName|green}} {{.Owner|white}} {{.Comment}}
|
||
|
{{end}}`)
|
||
|
}
|