dive-zfs/dive/image/layer.go
2019-09-22 11:50:05 -04:00

20 lines
252 B
Go

package image
import (
"github.com/wagoodman/dive/dive/filetree"
)
const (
LayerFormat = "%7s %s"
)
type Layer interface {
Id() string
ShortId() string
Index() int
Command() string
Size() uint64
Tree() *filetree.FileTree
String() string
}