| 3 | import "errors" |
| 4 | |
| 5 | type usageError struct { |
| 6 | error |
| 7 | } |
| 8 | |
| 9 | // ErrUsage returns the given error wrapped in a usageError or nil otherwise. |
| 10 | // usageError is used to indicate there's something wrong with the user input |
nothing calls this directly
no outgoing calls
no test coverage detected