api-client-go/errs/interfaces.go

9 lines
140 B
Go
Raw Permalink Normal View History

package errs
// Error implements generic error interface
type Error interface {
error
ApiError() string
2018-04-23 16:28:54 +03:00
ApiErrors() map[string]string
}