(record *TaskInspectRecord)
| 3744 | } |
| 3745 | |
| 3746 | func taskInspectBundle(record *TaskInspectRecord) outputBundle { |
| 3747 | return outputBundle{ |
| 3748 | jsonValue: record, |
| 3749 | human: func() (string, error) { return renderTaskInspectHuman(record) }, |
| 3750 | toon: func() (string, error) { return renderTaskInspectToon(record) }, |
| 3751 | } |
| 3752 | } |
| 3753 | |
| 3754 | func renderTaskInspectHuman(record *TaskInspectRecord) (string, error) { |
| 3755 | blocks := []string{ |
no test coverage detected