Commit 909297b8 authored by Aaron Jacobs's avatar Aaron Jacobs

Updated NotImplementedFileSystem.

parent 20850bb9
......@@ -33,6 +33,12 @@ func (fs *NotImplementedFileSystem) OpenDir(
return nil, fuse.ENOSYS
}
func (fs *NotImplementedFileSystem) ReadDir(
ctx context.Context,
req *fuse.ReadDirRequest) (*fuse.ReadDirResponse, error) {
return nil, fuse.ENOSYS
}
func (fs *NotImplementedFileSystem) ReleaseHandle(
ctx context.Context,
req *fuse.ReleaseHandleRequest) (*fuse.ReleaseHandleResponse, error) {
......
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