Files
faketunes/vendor/github.com/hanwen/go-fuse/v2/fs/bridge_nonlinux.go
Vladimir Hodakov 13ac06c14b Initial commit
Proof-of-concept implementation. Bugs will occur.
2026-02-12 01:18:46 +03:00

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
}