cmd-zet/internal/cli/root.go

14 lines
219 B
Go
Raw Normal View History

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