(items []BundleInventoryRecord)
| 619 | } |
| 620 | |
| 621 | func bundleInventoryTable(items []BundleInventoryRecord) string { |
| 622 | return renderHumanTable( |
| 623 | "Inventory", |
| 624 | []string{bundleKindValue, "ID", bundleNameValue}, |
| 625 | bundleInventoryRows(items), |
| 626 | ) |
| 627 | } |
| 628 | |
| 629 | func bundleAgentRows(items []BundleAgentRecord) [][]string { |
| 630 | rows := make([][]string, 0, len(items)) |
no test coverage detected