github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/kbfs/libfuse/fs_default.go (about)

     1  // Copyright 2016 Keybase Inc. All rights reserved.
     2  // Use of this source code is governed by a BSD
     3  // license that can be found in the LICENSE file.
     4  
     5  //go:build !darwin && !windows
     6  // +build !darwin,!windows
     7  
     8  package libfuse
     9  
    10  import (
    11  	"bazil.org/fuse"
    12  	"bazil.org/fuse/fs"
    13  	"golang.org/x/net/context"
    14  )
    15  
    16  var platformRootDirs []fuse.Dirent
    17  
    18  func shouldAppendPlatformRootDirs(parmas PlatformParams) bool { // nolint
    19  	return false
    20  }
    21  
    22  func (r *Root) platformLookup(ctx context.Context, req *fuse.LookupRequest, resp *fuse.LookupResponse) (fs.Node, error) {
    23  	return nil, nil
    24  }