mirror of
https://github.com/clearlinux/docker.git
synced 2026-09-08 23:11:51 +00:00
9 lines
194 B
Go
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)
|
|
}
|