зеркало из https://github.com/microsoft/docker.git
8 строки
192 B
Go
8 строки
192 B
Go
|
package graph
|
||
|
|
||
|
import "syscall"
|
||
|
|
||
|
func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
|
||
|
return syscall.Mount(source, target, fstype, flags, data)
|
||
|
}
|