Alex Vanin
20de74a505
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
13 lines
326 B
Go
13 lines
326 B
Go
package blobovnicza
|
|
|
|
import (
|
|
"errors"
|
|
|
|
apistatus "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/client/status"
|
|
)
|
|
|
|
// IsErrNotFound checks if the error returned by Blobovnicza Get/Delete method
|
|
// corresponds to the missing object.
|
|
func IsErrNotFound(err error) bool {
|
|
return errors.As(err, new(apistatus.ObjectNotFound))
|
|
}
|