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.go

40 lines
456 B

package main
import (
"os"
"github.com/codegangsta/cli"
)
var version = "0.0.1"
func main() {
app := cli.NewApp()
app.Name = "helm"
app.Version = version
app.Usage = `Deploy and manage packages.`
app.Commands = commands()
app.Run(os.Args)
}
func commands() []cli.Command {
return []cli.Command{
{
Name: "install",
},
{
Name: "target",
},
{
Name: "doctor",
},
{
Name: "deploy",
},
{
Name: "search",
},
}
}