Files
runc/stacktrace/stacktrace.go
T
Michael Crosby 7760faaab4 Add stacktrace package for collection of stacktraces
This helps aid our effort of returning useful errors.

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
2014-12-05 15:24:42 -08:00

6 lines
63 B
Go

package stacktrace
type Stacktrace struct {
Frames []Frame
}