blob: be0eb1eb4bf5c3b8cf6a44a1feacdc5e5344e5ee [file] [log] [blame]
//go:build !windows
// +build !windows
package main
import "github.com/moby/sys/mount"
func mountWrapper(device, target, mType, options string) error {
return mount.Mount(device, target, mType, options)
}