Basic skeleton for dist binary

Signed-off-by: Arnaud Porterie <arnaud.porterie@docker.com>
This commit is contained in:
Arnaud Porterie 2015-01-06 16:24:22 -08:00
parent 5f863238c0
commit 168b51d402
4 changed files with 77 additions and 0 deletions

21
cmd/dist/main.go vendored Normal file
View file

@ -0,0 +1,21 @@
package main
import (
"os"
"github.com/codegangsta/cli"
)
func main() {
app := cli.NewApp()
app.Name = "dist"
app.Usage = "Package and ship Docker content"
app.Action = commandList.Action
app.Commands = []cli.Command{
commandList,
commandPull,
commandPush,
}
app.Run(os.Args)
}