Error creates an item from an error.
(err error)
| 37 | |
| 38 | // Error creates an item from an error. |
| 39 | func Error(err error) Item { |
| 40 | return Item{E: err} |
| 41 | } |
| 42 | |
| 43 | // SendItems is an utility function that send a list of interface{} and indicate a strategy on whether to close |
| 44 | // the channel once the function completes. |
no outgoing calls
searching dependent graphs…