| 28 | } |
| 29 | |
| 30 | type View interface { |
| 31 | ShowTree(tasks TaskList, options *ViewOptions) |
| 32 | ShowTaskInfo(task Task) |
| 33 | } |
| 34 | |
| 35 | // TaskView is a filtered, ordered view of a Tasks children. |
| 36 | type TaskView struct { |
nothing calls this directly
no outgoing calls
no test coverage detected