├── .travis.yml ├── LICENSE ├── README.md ├── defer.go ├── defer_test.go ├── doc.go ├── errc.go ├── errc_test.go ├── example_test.go ├── handler.go └── handler_test.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvl/errc/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvl/errc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvl/errc/HEAD/README.md -------------------------------------------------------------------------------- /defer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvl/errc/HEAD/defer.go -------------------------------------------------------------------------------- /defer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvl/errc/HEAD/defer_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvl/errc/HEAD/doc.go -------------------------------------------------------------------------------- /errc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvl/errc/HEAD/errc.go -------------------------------------------------------------------------------- /errc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvl/errc/HEAD/errc_test.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvl/errc/HEAD/example_test.go -------------------------------------------------------------------------------- /handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvl/errc/HEAD/handler.go -------------------------------------------------------------------------------- /handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvl/errc/HEAD/handler_test.go --------------------------------------------------------------------------------