VictoriaMetrics/vendor/github.com/bmatcuk/doublestar/v4/doublestar.go

14 lines
337 B
Go
Raw Normal View History

package doublestar
import (
"errors"
"path"
)
// ErrBadPattern indicates a pattern was malformed.
var ErrBadPattern = path.ErrBadPattern
// ErrPatternNotExist indicates that the pattern passed to Glob, GlobWalk, or
// FilepathGlob references a path that does not exist.
var ErrPatternNotExist = errors.New("pattern does not exist")