mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 09:35:26 +01:00
20 lines
351 B
Go
20 lines
351 B
Go
package version
|
|
|
|
import (
|
|
"github.com/ncw/rclone/cmd"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
cmd.Root.AddCommand(commandDefinition)
|
|
}
|
|
|
|
var commandDefinition = &cobra.Command{
|
|
Use: "version",
|
|
Short: `Show the version number.`,
|
|
Run: func(command *cobra.Command, args []string) {
|
|
cmd.CheckArgs(0, 0, command, args)
|
|
cmd.ShowVersion()
|
|
},
|
|
}
|