mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0f5c9d301b
Fix the following warnings: pkg/mount/mountinfo.go:5:6: type name will be used as mount.MountInfo by other packages, and that stutters; consider calling this Info pkg/mount/mountinfo.go:7:2: struct field Id should be ID Signed-off-by: Antonio Murdaca <runcom@linux.com>
12 lines
236 B
Go
12 lines
236 B
Go
// +build !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)
|
|
}
|