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

     1  // Copyright 2018 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  	"github.com/keybase/client/go/kbfs/libkbfs"
    12  )
    13  
    14  // NewQuarantineXattrHandler returns a handler that doesn't handle Xattr calls
    15  // on this platform.
    16  func NewQuarantineXattrHandler(libkbfs.Node, *Folder) XattrHandler {
    17  	return NoXattrHandler{}
    18  }