mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
11 lines
209 B
Go
11 lines
209 B
Go
//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)
|
|
}
|