TagCount is the (tag, task-count) pair returned by ListAllTags.
| 1047 | |
| 1048 | // TagCount is the (tag, task-count) pair returned by ListAllTags. |
| 1049 | type TagCount struct { |
| 1050 | Tag string |
| 1051 | Count int |
| 1052 | } |
| 1053 | |
| 1054 | // ListAllTags returns every distinct tag in use, with the number of |
| 1055 | // non-archived tasks that carry it. Sorted by count descending, then |
nothing calls this directly
no outgoing calls
no test coverage detected