certwarden-deploy/internal/cli/root.go

18 lines
598 B
Go
Raw Normal View History

2024-06-28 15:28:54 +02:00
package cli
import "github.com/spf13/cobra"
var RootCmd = &cobra.Command{
Use: "certwarden-deploy",
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.`,
// Uncomment the following line if your bare application
// has an action associated with it:
// Run: func(cmd *cobra.Command, args []string) { },
}