linuxkit/pkg/metadata/vendor/github.com/diskfs/go-diskfs/partition/table.go
Avi Deitcher 3678adeca8 find cloud-init on cdrom by label
Signed-off-by: Avi Deitcher <avi@deitcher.net>
2020-04-27 17:00:42 +03:00

14 lines
269 B
Go
Vendored

package partition
import (
"github.com/diskfs/go-diskfs/partition/part"
"github.com/diskfs/go-diskfs/util"
)
// Table reference to a partitioning table on disk
type Table interface {
Type() string
Write(util.File, int64) error
GetPartitions() []part.Partition
}