Unwrap wraps the standard errors.Unwrap function so that we don't need to alias that package.
(err error)
| 68 | |
| 69 | // Unwrap wraps the standard errors.Unwrap function so that we don't need to alias that package. |
| 70 | func Unwrap(err error) error { |
| 71 | return errors.Unwrap(err) |
| 72 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…