1
0
Fork 0
mirror of https://github.com/retailcrm/api-client-go.git synced 2025-04-18 08:20:56 +00:00
api-client-go/errs/interfaces.go
2018-04-23 16:57:36 +03:00

8 lines
140 B
Go

package errs
// Error implements generic error interface
type Error interface {
error
ApiError() string
ApiErrors() map[string]string
}