docker_api_containers_unix_test.go 209 B

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