11 lines
200 B
Go
11 lines
200 B
Go
package chroot
|
|
|
|
import (
|
|
"github.com/mitchellh/multistep"
|
|
)
|
|
|
|
// Cleanup is an interface that some steps implement for early cleanup.
|
|
type Cleanup interface {
|
|
CleanupFunc(multistep.StateBag) error
|
|
}
|