mirror of
https://github.com/moby/moby.git
synced 2026-07-24 16:26:51 +00:00
8 lines
257 B
Go
8 lines
257 B
Go
package aufs // import "github.com/docker/docker/daemon/graphdriver/aufs"
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
func mount(source string, target string, fstype string, flags uintptr, data string) error {
|
|
return unix.Mount(source, target, fstype, flags, data)
|
|
}
|