runtime/builder with golang implementation (#2003)
This commit is contained in:
9
runtime/builder/builder.go
Normal file
9
runtime/builder/builder.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package builder
|
||||
|
||||
import "io"
|
||||
|
||||
// Builder is an interface for building packages
|
||||
type Builder interface {
|
||||
// Build a package
|
||||
Build(src io.Reader, opts ...Option) (io.Reader, error)
|
||||
}
|
||||
Reference in New Issue
Block a user