10 lines
199 B
Go
10 lines
199 B
Go
//go:build !linux
|
|
|
|
package fs
|
|
|
|
import "github.com/hanwen/go-fuse/v2/fuse"
|
|
|
|
func (b *rawBridge) Statx(cancel <-chan struct{}, in *fuse.StatxIn, out *fuse.StatxOut) fuse.Status {
|
|
return fuse.ENOSYS
|
|
}
|