2023-04-17 13:36:11 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
var RootCmd = &cobra.Command{
|
2023-05-03 08:52:34 +00:00
|
|
|
Use: "alba",
|
|
|
|
Short: "alba is a companion cli for albatros",
|
|
|
|
Long: `A companion CLI for your CI that handle its configuration and artifacts publishing`,
|
2023-04-17 13:36:11 +00:00
|
|
|
}
|