mirror of https://github.com/markbates/pkger.git
16 lines
194 B
Go
16 lines
194 B
Go
|
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
|
||
|
}
|