forked from mirror/pkger
7 lines
128 B
Go
7 lines
128 B
Go
|
package pkger
|
||
|
|
||
|
func Exclude(fl *File, excludes ...string) error {
|
||
|
fl.excludes = append(fl.excludes, excludes...)
|
||
|
return nil
|
||
|
}
|