mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
14 lines
337 B
Go
14 lines
337 B
Go
|
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")
|