feat(root): replaces cobra-cli placeholder desc with an actual desc
This commit is contained in:
parent
3a781a56f1
commit
b93475ea45
1 changed files with 10 additions and 8 deletions
18
cmd/root.go
18
cmd/root.go
|
|
@ -30,14 +30,16 @@ import (
|
||||||
// rootCmd represents the base command when called without any subcommands
|
// rootCmd represents the base command when called without any subcommands
|
||||||
var rootCmd = &cobra.Command{
|
var rootCmd = &cobra.Command{
|
||||||
Use: "pda",
|
Use: "pda",
|
||||||
Short: "A brief description of your application",
|
Short: "A key-value store.",
|
||||||
Long: `A longer description that spans multiple lines and likely contains
|
Long: ` ▄▄
|
||||||
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.`,
|
███▄▄██▀ ▀██▄▄███ ██▄▄▄███
|
||||||
}
|
██ ▀▀▀ ▀▀▀ ▀▀ ▀▀▀▀ ▀▀
|
||||||
|
██ (c) 2025 Lewis Wynne
|
||||||
|
`}
|
||||||
|
|
||||||
func Execute() {
|
func Execute() {
|
||||||
err := rootCmd.Execute()
|
err := rootCmd.Execute()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue