fsImpl.Init

geesefs-0-30-9
Aaron Jacobs 2015-03-30 16:20:42 +11:00
parent 42cefe94f7
commit a37b22d786
1 changed files with 9 additions and 0 deletions

View File

@ -16,6 +16,7 @@ package forgetfs
import (
"github.com/jacobsa/fuse"
"github.com/jacobsa/fuse/fuseops"
"github.com/jacobsa/fuse/fuseutil"
)
@ -69,3 +70,11 @@ func (fs *ForgetFS) Check() {
type fsImpl struct {
fuseutil.NotImplementedFileSystem
}
func (fs *fsImpl) Init(
op *fuseops.InitOp) {
var err error
defer fuseutil.RespondToOp(op, &err)
return
}