gomvpkg -from "github.com/mitchellh/multistep" -to "github.com/hashicorp/packer/helper/multistep"
11 lines
214 B
Go
11 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
|
|
}
|