Success builds the output group from the provided clients.
(clients ...Client)
| 103 | |
| 104 | // Success builds the output group from the provided clients. |
| 105 | func Success(clients ...Client) OutputGroup { |
| 106 | return OutputGroup{Clients: clients} |
| 107 | } |
| 108 | |
| 109 | // Fail returns an empty output group and an error signaling the failure that caused the output group initialization. |
| 110 | func Fail(err error) (OutputGroup, error) { |
no outgoing calls
no test coverage detected