Commit 20b5ac76 authored by Aaron Jacobs's avatar Aaron Jacobs

flushFS.Init

parent e1375f33
......@@ -17,6 +17,7 @@ package flushfs
import (
"github.com/jacobsa/fuse"
"github.com/jacobsa/fuse/fuseutil"
"golang.org/x/net/context"
)
// Create a file system containing a single file named "foo".
......@@ -34,3 +35,11 @@ func NewFileSystem(
type flushFS struct {
fuseutil.NotImplementedFileSystem
}
func (fs *flushFS) Init(
ctx context.Context,
req *fuse.InitRequest) (
resp *fuse.InitResponse, err error) {
resp = &fuse.InitResponse{}
return
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment