Files
Packer-Cn/builder/amazon/chroot/cleanup.go
T

11 lines
200 B
Go
Raw Normal View History

package chroot
2013-08-31 12:58:55 -07:00
import (
"github.com/mitchellh/multistep"
)
// Cleanup is an interface that some steps implement for early cleanup.
type Cleanup interface {
2013-08-31 12:58:55 -07:00
CleanupFunc(multistep.StateBag) error
}