Files
pocket-id-pocket-id/backend/internal/utils/networked_filesystem_nonlinux.go

9 lines
256 B
Go
Raw Normal View History

//go:build !linux
package utils
// IsNetworkedFileSystem returns false on non-Linux systems because this detection is only used for Linux-specific statfs(2) filesystem magic values.
func IsNetworkedFileSystem(string) (bool, error) {
return false, nil
}