UserError is a well-formatted error for the purpose of being displayed to the end user.
| 13 | // UserError is a well-formatted error for the purpose of being displayed to |
| 14 | // the end user. |
| 15 | type UserError interface { |
| 16 | error |
| 17 | UserError() string |
| 18 | } |
| 19 | |
| 20 | var statusSuccess = color.New(color.FgGreen).Sprint("SUCCESS") |
| 21 | var statusFailed = color.New(color.FgRed).Sprint("FAILED") |
no outgoing calls
no test coverage detected