github.com/ssdev-go/moby@v17.12.1-ce-rc2+incompatible/pkg/mount/mountinfo_unsupported.go (about)

     1  // +build !windows,!linux,!freebsd freebsd,!cgo
     2  
     3  package mount
     4  
     5  import (
     6  	"fmt"
     7  	"runtime"
     8  )
     9  
    10  func parseMountTable() ([]*Info, error) {
    11  	return nil, fmt.Errorf("mount.parseMountTable is not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
    12  }