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

     1  package build
     2  
     3  import "github.com/wawandco/ox/plugins/core"
     4  
     5  // AfterBuilder interface allows to identify the things
     6  // that will run after the build process has ended, things
     7  // like cleanup and reverting go here
     8  type AfterBuilder interface {
     9  	core.Plugin
    10  	RunAfterBuild(string, []string) error
    11  }