11 lines
218 B
Go
Raw Permalink Normal View History

2019-05-09 11:50:44 -05:00
package chroot
import (
2020-12-17 13:29:25 -08:00
"github.com/hashicorp/packer-plugin-sdk/multistep"
2019-05-09 11:50:44 -05:00
)
// Cleanup is an interface that some steps implement for early cleanup.
type Cleanup interface {
CleanupFunc(multistep.StateBag) error
}