github.com/wawandco/ox@v0.13.6-0.20230809142027-913b3d837f2a/plugins/base/build/builder.go (about)

     1  package build
     2  
     3  import (
     4  	"context"
     5  
     6  	"github.com/wawandco/ox/plugins/core"
     7  )
     8  
     9  // Builder interface allows to set the build steps to be run.
    10  type Builder interface {
    11  	core.Plugin
    12  	Build(context.Context, string, []string) error
    13  }