mirror of
https://github.com/retailcrm/api-client-go.git
synced 2025-04-03 05:03:33 +03:00
8 lines
140 B
Go
8 lines
140 B
Go
package errs
|
|
|
|
// Error implements generic error interface
|
|
type Error interface {
|
|
error
|
|
ApiError() string
|
|
ApiErrors() map[string]string
|
|
}
|