Initial Commit
This commit is contained in:
commit
87a522daab
22 changed files with 1555 additions and 0 deletions
15
cmd/version.go
Normal file
15
cmd/version.go
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
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")
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue