File: mountinfo_freebsd.go

package info (click to toggle)
golang-github-anacrolix-fuse 0.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,000 kB
  • sloc: makefile: 5; sh: 3
file content (7 lines) | stat: -rw-r--r-- 158 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
package fstestutil

import "errors"

func getMountInfo(mnt string) (*MountInfo, error) {
	return nil, errors.New("FreeBSD has no useful mount information")
}