disk.go 195 B

123456789
  1. package config
  2. type Disk struct {
  3. MountPoint string `mapstructure:"mount-point" json:"mount-point" yaml:"mount-point"`
  4. }
  5. type DiskList struct {
  6. Disk `yaml:",inline" mapstructure:",squash"`
  7. }