mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-04 16:12:47 +08:00
19 lines
282 B
Go
19 lines
282 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
version = "v1.0"
|
|
versionCmd = &cobra.Command{
|
|
Use: "version",
|
|
Short: "Prints the version of tacoctl",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Println("tacoctl version:", version)
|
|
},
|
|
}
|
|
)
|