packer-cn/builder/amazon/chroot/cleanup.go

7 lines
158 B
Go
Raw Normal View History

package chroot
// Cleanup is an interface that some steps implement for early cleanup.
type Cleanup interface {
CleanupFunc(map[string]interface{}) error
}