pkger/filter.go

7 lines
128 B
Go
Raw Normal View History

package pkger
func Exclude(fl *File, excludes ...string) error {
fl.excludes = append(fl.excludes, excludes...)
return nil
}