libgocryptfs/frontend/node.go

18 lines
264 B
Go
Raw Normal View History

2015-09-03 23:54:12 +02:00
package frontend
import (
2015-09-05 11:49:05 +02:00
"fmt"
"github.com/rfjakob/cluefs/lib/cluefs"
2015-09-03 23:54:12 +02:00
)
type Node struct {
*cluefs.Node
2015-09-03 23:54:12 +02:00
}
2015-09-05 11:49:05 +02:00
func NewNode(parent string, name string, fs *FS) *Node {
fmt.Printf("NewNode\n")
return &Node{
Node: cluefs.NewNode(parent, name, fs.ClueFS),
}
}