mirror of
https://github.com/kairos-io/kairos-sdk.git
synced 2025-09-19 17:52:20 +00:00
16 lines
520 B
Go
16 lines
520 B
Go
package types
|
|
|
|
type Partition struct {
|
|
Name string `yaml:"-"`
|
|
FilesystemLabel string `yaml:"label,omitempty" mapstructure:"label"`
|
|
Size uint `yaml:"size,omitempty" mapstructure:"size"`
|
|
FS string `yaml:"fs,omitempty" mapstrcuture:"fs"`
|
|
Flags []string `yaml:"flags,omitempty" mapstrcuture:"flags"`
|
|
UUID string
|
|
MountPoint string `yaml:"-"`
|
|
Path string `yaml:"-"`
|
|
Disk string `yaml:"-"`
|
|
}
|
|
|
|
type PartitionList []*Partition
|