├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── panicwrap.go └── panicwrap_test.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/panicwrap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/panicwrap/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/panicwrap 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /panicwrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/panicwrap/HEAD/panicwrap.go -------------------------------------------------------------------------------- /panicwrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/panicwrap/HEAD/panicwrap_test.go --------------------------------------------------------------------------------