MCPcopy Create free account
hub / github.com/compozy/agh / taskDependencyToonRows

Function taskDependencyToonRows

internal/cli/task.go:4511–4522  ·  view source on GitHub ↗
(items []TaskDependencyRecord)

Source from the content-addressed store, hash-verified

4509}
4510
4511func taskDependencyToonRows(items []TaskDependencyRecord) [][]string {
4512 rows := make([][]string, 0, len(items))
4513 for _, item := range items {
4514 rows = append(rows, []string{
4515 item.TaskID,
4516 item.DependsOnTaskID,
4517 string(item.Kind),
4518 formatTime(item.CreatedAt),
4519 })
4520 }
4521 return rows
4522}
4523
4524func taskRunRows(items []TaskRunRecord) [][]string {
4525 rows := make([][]string, 0, len(items))

Callers 1

renderTaskDetailToonFunction · 0.85

Calls 2

appendFunction · 0.85
formatTimeFunction · 0.85

Tested by

no test coverage detected