package cli import "github.com/spf13/cobra" var jsonOutput bool var rootCmd = &cobra.Command{ Use: "zet", Short: "Zettelkasten note manager", Long: `Zettelkasten note manager`, } func Execute() error { return rootCmd.Execute() }