aboutsummaryrefslogtreecommitdiff
path: root/frontend/node.go
blob: f9b630c3b89c43695994f7f5d6a29b7ce3496379 (plain)
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),
	}
}