mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-23 01:40:26 -05:00
10 lines
214 B
Go
10 lines
214 B
Go
package chroot
|
|
|
|
import (
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
)
|
|
|
|
// Cleanup is an interface that some steps implement for early cleanup.
|
|
type Cleanup interface {
|
|
CleanupFunc(multistep.StateBag) error
|
|
}
|