doublestar.go
1package doublestar
2
3import (
4 "errors"
5 "path"
6)
7
8// ErrBadPattern indicates a pattern was malformed.
9var ErrBadPattern = path.ErrBadPattern
10
11// ErrPatternNotExist indicates that the pattern passed to Glob, GlobWalk, or
12// FilepathGlob references a path that does not exist.
13var ErrPatternNotExist = errors.New("pattern does not exist")