13 lines
219 B
Go
13 lines
219 B
Go
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()
|
|
}
|