distribution/cmd/dist/list.go
Arnaud Porterie 168b51d402 Basic skeleton for dist binary
Signed-off-by: Arnaud Porterie <arnaud.porterie@docker.com>
2015-02-13 15:25:20 -08:00

14 lines
202 B
Go

package main
import "github.com/codegangsta/cli"
var (
commandList = cli.Command{
Name: "images",
Usage: "List available images",
Action: imageList,
}
)
func imageList(c *cli.Context) {
}