go-errhttp/error.go

8 lines
78 B
Go
Raw Normal View History

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