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