go-errhttp/error.go

9 lines
89 B
Go
Raw Normal View History

2017-02-06 20:58:13 +00:00
package errhttp
type Error interface {
error
Err() error
ErrHTTP()
Unwrap() error
2017-02-06 20:58:13 +00:00
}