What I wanted to do Link to heading Today’s pkg/errors Link to heading Package errors is a popular go error wrapping package. The StackTrace type represents the stack trace with an []Frame. Errors wrapped by package errors implicitly implement the stackTracer interface, which allows users to extract stack information. type StackTrace []Frame type Frame uintptr type stackTracer interface { StackTrace() errors.StackTrace } Simultaneously to this, there exist libraries that would like to extra...