2023-01-06 15:26:24 +01:00

19 lines
331 B
Go

package cmd
import (
"github.com/rsteube/carapace"
"github.com/spf13/cobra"
)
var builderCmd = &cobra.Command{
Use: "builder",
Short: "Manage builds",
GroupID: "management",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(builderCmd).Standalone()
rootCmd.AddCommand(builderCmd)
}