package engine // WorkingSet is a mapping from small integers to task uuids for all pending tasks. // The small integers are meant to be stable, easily-typed identifiers for users to interact with // important tasks. type WorkingSet struct { byUUID map[string]*Task byID []string }