blob: be0eb1eb4bf5c3b8cf6a44a1feacdc5e5344e5ee (
plain)
1
2
3
4
5
6
7
8
9
10
|
//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)
}
|