Update is a convenience function to write a progress update to the channel.
(out Output, id, action string)
| 66 | |
| 67 | // Update is a convenience function to write a progress update to the channel. |
| 68 | func Update(out Output, id, action string) { |
| 69 | out.WriteProgress(Progress{ID: id, Action: action}) |
| 70 | } |
| 71 | |
| 72 | // Updatef is a convenience function to write a printf-formatted progress update |
| 73 | // to the channel. |
no test coverage detected
searching dependent graphs…