mirror of
https://github.com/docker/cli.git
synced 2026-01-15 07:40:57 +03:00
8 lines
190 B
Go
8 lines
190 B
Go
package docker
|
|
|
|
import "errors"
|
|
|
|
func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
|
|
return errors.New("mount is not implemented on darwin")
|
|
}
|