8 lines
84 B
Go
8 lines
84 B
Go
|
package pkging
|
||
|
|
||
|
import "os"
|
||
|
|
||
|
type Adder interface {
|
||
|
Add(files ...*os.File) error
|
||
|
}
|