Initial Commit

This commit is contained in:
steven carpenter 2025-07-27 15:11:43 -04:00
commit 87a522daab
22 changed files with 1555 additions and 0 deletions

15
cmd/version.go Normal file
View 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")
},
}