github.com/wawandco/oxpecker@v1.5.7-0.20210910201653-5958d4afdd89/lifecycle/build/builder.go (about) 1 package build 2 3 import ( 4 "context" 5 6 "github.com/wawandco/oxpecker/plugins" 7 ) 8 9 // Builder interface allows to set the build steps to be run. 10 type Builder interface { 11 plugins.Plugin 12 Build(context.Context, string, []string) error 13 }