feat(*): add scaffolded cli app.

pull/291/head
Matt Butcher 9 years ago
parent 546ee53ac0
commit 69e6256885

@ -0,0 +1,39 @@
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",
},
}
}

8
glide.lock generated

@ -1,4 +1,6 @@
hash: 9ec7498a0fe304c2d06e42e1d233ee43cfc090abdd0523c102136831263233b6
updated: 2016-01-06T13:45:44.400476304-08:00
imports: []
hash: 2f47b12bf634894e182800b5565efd124c6defff6291b60408cbba6a038778ae
updated: 2016-01-06T13:51:49.954407735-08:00
imports:
- name: github.com/codegangsta/cli
version: c31a7975863e7810c92e2e288a9ab074f9a88f29
devImports: []

@ -1,2 +1,3 @@
package: github.com/engineyard/helm-dm
import: []
import:
- package: github.com/codegangsta/cli

Loading…
Cancel
Save