NoSort leaves the tasks in the order they are defined.
(items []string, namespaces []string)
| 11 | |
| 12 | // NoSort leaves the tasks in the order they are defined. |
| 13 | func NoSort(items []string, namespaces []string) []string { |
| 14 | return items |
| 15 | } |
| 16 | |
| 17 | // AlphaNumeric sorts the JSON output so that tasks are in alpha numeric order |
| 18 | // by task name. |
no outgoing calls
searching dependent graphs…