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