15 lines
251 B
Go
15 lines
251 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var versionCmd = &cobra.Command{
|
|
Use: "version",
|
|
Short: "Print the version number of go-cal-tui",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Println("go-cal-tui ~ 0.0.1")
|
|
},
|
|
}
|