168b51d402
Signed-off-by: Arnaud Porterie <arnaud.porterie@docker.com>
21 lines
297 B
Go
21 lines
297 B
Go
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)
|
|
}
|