docker_api_containers_unix_test.go 189 B

123456789
  1. // +build !windows
  2. package main
  3. import "github.com/moby/sys/mount"
  4. func mountWrapper(device, target, mType, options string) error {
  5. return mount.Mount(device, target, mType, options)
  6. }