blob: 210fd40ceb3edac062b5b7f14d9b2b82474d898b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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")
|