mirror of
https://github.com/restic/restic.git
synced 2025-08-25 08:32:56 +00:00
8 lines
158 B
Go
8 lines
158 B
Go
![]() |
package fstestutil
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
func getMountInfo(mnt string) (*MountInfo, error) {
|
||
|
return nil, errors.New("FreeBSD has no useful mount information")
|
||
|
}
|