mirror of
https://github.com/rclone/rclone.git
synced 2024-11-24 17:34:57 +01:00
13 lines
232 B
Go
13 lines
232 B
Go
// For unsupported architectures
|
|
//go:build !unix
|
|
|
|
// Package nfs is not supported on non-Unix platforms
|
|
package nfs
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// Command is just nil for unsupported platforms
|
|
var Command *cobra.Command
|