Files
cli/components/engine/mount_linux.go
T
2013-02-13 17:10:00 -08:00

9 lines
194 B
Go

package docker
import "syscall"
func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
return syscall.Mount(source, target, fstype, flags, data)
}