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

     1  package build
     2  
     3  import (
     4  	"context"
     5  
     6  	"github.com/wawandco/ox/plugins/core"
     7  )
     8  
     9  // BeforeBuilder interface allows to identify the things
    10  // that will run before the build process has started.
    11  type BeforeBuilder interface {
    12  	core.Plugin
    13  	RunBeforeBuild(context.Context, string, []string) error
    14  }