(items []BundleAgentRecord)
| 554 | } |
| 555 | |
| 556 | func bundleAgentsTable(items []BundleAgentRecord) string { |
| 557 | return renderHumanTable( |
| 558 | "Agents", |
| 559 | []string{bundleNameValue, agentKernelProviderValue, bundleModelValue, "Soul", "Heartbeat"}, |
| 560 | bundleAgentRows(items), |
| 561 | ) |
| 562 | } |
| 563 | |
| 564 | func bundleJobsTable(items []BundleJobRecord) string { |
| 565 | rows := make([][]string, 0, len(items)) |
no test coverage detected