databricks-cli/cmd/workspace/dashboards/overrides.go

19 lines
432 B
Go

package dashboards
import (
"github.com/databricks/cli/libs/cmdio"
"github.com/databricks/databricks-sdk-go/service/sql"
"github.com/spf13/cobra"
)
func listOverride(listCmd *cobra.Command, _ *sql.ListDashboardsRequest) {
listCmd.Annotations["template"] = cmdio.Heredoc(`
{{header "ID"}} {{header "Name"}}
{{range .}}{{.Id|green}} {{.Name}}
{{end}}`)
}
func init() {
listOverrides = append(listOverrides, listOverride)
}