package queries import ( "github.com/databricks/cli/libs/cmdio" "github.com/databricks/databricks-sdk-go/service/sql" "github.com/spf13/cobra" ) func listOverride(listCmd *cobra.Command, listReq *sql.ListQueriesRequest) { // TODO: figure out colored/non-colored headers and colspan shifts listCmd.Annotations["template"] = cmdio.Heredoc(` {{header "ID"}} {{header "Name"}} {{header "Author"}} {{range .}}{{.Id|green}} {{.Name|cyan}} {{.User.Email|cyan}} {{end}}`) } func init() { listOverrides = append(listOverrides, listOverride) }