mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
24 lines
428 B
Go
24 lines
428 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/c9s/bbgo/pkg/version"
|
|
)
|
|
|
|
func init() {
|
|
// VersionCmd.Flags().String("session", "", "the exchange session name for sync")
|
|
RootCmd.AddCommand(VersionCmd)
|
|
}
|
|
|
|
var VersionCmd = &cobra.Command{
|
|
Use: "version",
|
|
Short: "show version name",
|
|
SilenceUsage: true,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Println(version.Version)
|
|
},
|
|
}
|