mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4785f1a7ab
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
12 lines
245 B
Go
12 lines
245 B
Go
// +build !windows,!linux,!freebsd freebsd,!cgo
|
|
|
|
package mount
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
func parseMountTable() ([]*Info, error) {
|
|
return nil, fmt.Errorf("mount.parseMountTable is not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
|
|
}
|