mounts_windows.go 209 B

12345678
  1. package container
  2. // Mount contains information for a mount operation.
  3. type Mount struct {
  4. Source string `json:"source"`
  5. Destination string `json:"destination"`
  6. Writable bool `json:"writable"`
  7. }