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