1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package frontend import ( "fmt" "github.com/rfjakob/cluefs/lib/cluefs" ) type Node struct { *cluefs.Node } func NewNode(parent string, name string, fs *FS) *Node { fmt.Printf("NewNode\n") return &Node{ Node: cluefs.NewNode(parent, name, fs.ClueFS), } }