github.com/keybase/client/go@v0.0.0-20241007131713-f10651d043c8/service/kbfs_mount_nix.go (about)

     1  // Copyright 2015 Keybase, Inc. All rights reserved. Use of
     2  // this source code is governed by the included BSD license.
     3  
     4  //go:build !windows
     5  // +build !windows
     6  
     7  package service
     8  
     9  import (
    10  	"errors"
    11  )
    12  
    13  func getMountDirs() ([]string, error) {
    14  	return []string{}, errors.New("getMountDirs is Windows only")
    15  }