mirror of
https://github.com/passbolt/go-passbolt.git
synced 2025-05-09 17:48:20 +00:00
8 lines
200 B
Go
8 lines
200 B
Go
package api
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrAPIResponseErrorStatusCode = errors.New("Error API JSON Response Status")
|
|
ErrAPIResponseUnknownStatusCode = errors.New("Unknown API JSON Response Status")
|
|
)
|