github.com/wawandco/oxpecker@v1.5.7-0.20210910201653-5958d4afdd89/lifecycle/build/after_builder.go (about) 1 package build 2 3 import "github.com/wawandco/oxpecker/plugins" 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 plugins.Plugin 10 RunAfterBuild(string, []string) error 11 }