github.com/flavio/docker@v0.1.3-0.20170117145210-f63d1a6eec47/pkg/mount/mounter_unsupported.go (about) 1 // +build !linux,!freebsd,!solaris freebsd,!cgo solaris,!cgo 2 3 package mount 4 5 func mount(device, target, mType string, flag uintptr, data string) error { 6 panic("Not implemented") 7 } 8 9 func unmount(target string, flag int) error { 10 panic("Not implemented") 11 }