mirror of
https://github.com/mudler/luet.git
synced 2025-08-25 02:18:44 +00:00
13 lines
261 B
Go
13 lines
261 B
Go
// +build !windows,!linux,!freebsd freebsd,!cgo
|
|
|
|
package mountinfo
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
func parseMountTable(f FilterFunc) ([]*Info, error) {
|
|
return nil, fmt.Errorf("mount.parseMountTable is not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
|
|
}
|