blob: 01b327f788ac2089beb73a90b1068ff88780c38b [file] [log] [blame]
package container
// Mount contains information for a mount operation.
type Mount struct {
Source string `json:"source"`
Destination string `json:"destination"`
Writable bool `json:"writable"`
}