diff --git a/glob.go b/glob.go index d1052ab..289238f 100644 --- a/glob.go +++ b/glob.go @@ -5,6 +5,7 @@ type Glob interface { Match(string) bool } +// Globs represents a collection of Globs type Globs []Glob // Compile creates Glob for given pattern and strings (if any present after pattern) as separators.