github.com/rita33cool1/iot-system-gateway@v0.0.0-20200911033302-e65bde238cc5/docker-engine/pkg/mount/mounter_unsupported.go (about) 1 // +build !linux,!freebsd freebsd,!cgo 2 3 package mount // import "github.com/docker/docker/pkg/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 }