github.com/keybase/client/go@v0.0.0-20241007131713-f10651d043c8/mounter/mounter_non_osx.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 !darwin
     5  // +build !darwin
     6  
     7  package mounter
     8  
     9  import (
    10  	"fmt"
    11  )
    12  
    13  // IsMounted returns true if directory is mounted (by kbfuse)
    14  func IsMounted(dir string, log Log) (bool, error) {
    15  	return false, fmt.Errorf("IsMounted unsupported on this platform")
    16  }