debian-forge-composer/internal/osbuild/mount.go
2022-07-14 16:54:00 +02:00

15 lines
313 B
Go

package osbuild
type Mounts []Mount
type Mount struct {
Name string `json:"name"`
Type string `json:"type"`
Source string `json:"source"`
Target string `json:"target"`
Options *MountOptions `json:"options,omitempty"`
}
type MountOptions interface {
isMountOptions()
}