runtime/builder with golang implementation (#2003)

This commit is contained in:
ben-toogood
2020-09-15 17:26:27 +01:00
committed by GitHub
parent 35349bd313
commit 8fdc8f05ce
4 changed files with 372 additions and 0 deletions

View 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)
}