github.com/Prakhar-Agarwal-byte/moby@v0.0.0-20231027092010-a14e3e8ab87e/integration-cli/docker_api_containers_unix_test.go (about)

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