mirror of
https://github.com/rclone/rclone.git
synced 2024-11-25 17:57:44 +08: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
|