feat(root): replaces cobra-cli placeholder desc with an actual desc

This commit is contained in:
Lewis Wynne 2025-11-11 13:55:59 +00:00
parent 3a781a56f1
commit b93475ea45

View file

@ -30,14 +30,16 @@ import (
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "pda",
Short: "A brief description of your application",
Long: `A longer description that spans multiple lines and likely contains
examples and usage of using your application. For example:
Cobra is a CLI library for Go that empowers applications.
This application is a tool to generate the needed files
to quickly create a Cobra application.`,
}
Short: "A key-value store.",
Long: `
(c) 2025 Lewis Wynne
`}
func Execute() {
err := rootCmd.Execute()