ListOptions collects list-related options
| 20 | |
| 21 | // ListOptions collects list-related options |
| 22 | type ListOptions struct { |
| 23 | ListOnlyTasksWithDescriptions bool |
| 24 | ListAllTasks bool |
| 25 | FormatTaskListAsJSON bool |
| 26 | NoStatus bool |
| 27 | Nested bool |
| 28 | } |
| 29 | |
| 30 | // NewListOptions creates a new ListOptions instance |
| 31 | func NewListOptions(list, listAll, listAsJson, noStatus, nested bool) ListOptions { |
nothing calls this directly
no outgoing calls
no test coverage detected