mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-08-03 07:55:17 +00:00
14 lines
269 B
Go
Vendored
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
|
|
}
|