(cmd *cobra.Command, bundle outputBundle, items []T)
| 1791 | } |
| 1792 | |
| 1793 | func writeCommandOutputWithJSONL[T any](cmd *cobra.Command, bundle outputBundle, items []T) error { |
| 1794 | mode, err := resolveOutputFormat(cmd) |
| 1795 | if err != nil { |
| 1796 | return err |
| 1797 | } |
| 1798 | if mode == OutputJSONL { |
| 1799 | return writeJSONLines(cmd, items) |
| 1800 | } |
| 1801 | return writeCommandOutput(cmd, bundle) |
| 1802 | } |
| 1803 | |
| 1804 | func networkThreadHumanRow(thread NetworkThreadRecord) []string { |
| 1805 | return []string{ |
no test coverage detected