12 lines
243 B
Go
12 lines
243 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
var RootCmd = &cobra.Command{
|
||
|
Use: "alba",
|
||
|
Short: "alba is a companion cli for albatros",
|
||
|
Long: `A companion CLI for your CI that handle its configuration and artifacts publishing`,
|
||
|
}
|