mirror of https://github.com/databricks/cli.git
11 lines
292 B
Go
11 lines
292 B
Go
|
package token_management
|
||
|
|
||
|
import "github.com/databricks/bricks/libs/cmdio"
|
||
|
|
||
|
func init() {
|
||
|
listCmd.Annotations["template"] = cmdio.Heredoc(`
|
||
|
{{white "ID"}} {{white "Created By"}} {{white "Comment"}}
|
||
|
{{range .}}{{.TokenId|green}} {{.CreatedByUsername|white}} {{.Comment|white}}
|
||
|
{{end}}`)
|
||
|
}
|