diff --git a/pkg/core/helpers.go b/pkg/core/helpers.go index 8e91da33..0c367e2c 100644 --- a/pkg/core/helpers.go +++ b/pkg/core/helpers.go @@ -38,15 +38,6 @@ func RandString(size, base byte) string { return string(b) } -func Any(errs ...error) error { - for _, err := range errs { - if err != nil { - return err - } - } - return nil -} - func Between(s, sub1, sub2 string) string { i := strings.Index(s, sub1) if i < 0 {