You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helm/cmd/helm/helm.go

20 lines
257 B

package main
import (
"os"
"github.com/spf13/cobra"
)
var stdout = os.Stdout
var RootCommand = &cobra.Command{
Use: "helm",
Short: "The Helm package manager for Kubernetes.",
Long: `Do long help here.`,
}
func main() {
RootCommand.Execute()
}