Commit 56cd06ab authored by Aaron Jacobs's avatar Aaron Jacobs

Implemented OpenDir and OpenFile.

parent 8d1ca91b
......@@ -332,3 +332,19 @@ func (fs *cachingFS) GetInodeAttributes(
return
}
func (fs *cachingFS) OpenDir(
ctx context.Context,
req *fuse.OpenDirRequest) (
resp *fuse.OpenDirResponse, err error) {
resp = &fuse.OpenDirResponse{}
return
}
func (fs *cachingFS) OpenFile(
ctx context.Context,
req *fuse.OpenFileRequest) (
resp *fuse.OpenFileResponse, err error) {
resp = &fuse.OpenFileResponse{}
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