@ -0,0 +1,9 @@
package erorr
import (
"errors"
)
func Is(err, target error) bool {
return errors.Is(err, target)
}