(format string, a ...interface{})
| 33 | ) |
| 34 | |
| 35 | func printLine(format string, a ...interface{}) { |
| 36 | boldColor := color.New(color.Bold) |
| 37 | _, _ = fmt.Fprintln(os.Stdout, boldColor.Sprintf(format, a...)) |
| 38 | } |
| 39 | |
| 40 | func printCluster(cluster *store.Cluster) { |
| 41 | writer := tablewriter.NewWriter(os.Stdout) |
no outgoing calls
no test coverage detected