blob: 6a1294acf02f3653bae3ed0b8ba1ffbf7b7053fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package fusefrontend_reverse
import (
"github.com/hanwen/go-fuse/v2/fs"
)
// Node is a file or directory in the filesystem tree
// in a `gocryptfs -reverse` mount.
type Node struct {
fs.Inode
}
|