pkger/pkging/faces.go

16 lines
194 B
Go
Raw Normal View History

2019-10-21 00:52:16 +03:00
package pkging
import (
"io"
"github.com/markbates/pkger/here"
)
type Adder interface {
Add(files ...File) error
}
type Stuffer interface {
Stuff(w io.Writer, paths []here.Path) error
}