mirror of
https://github.com/distribution/distribution
synced 2024-11-12 05:45:51 +01:00
168b51d402
Signed-off-by: Arnaud Porterie <arnaud.porterie@docker.com>
15 lines
202 B
Go
15 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) {
|
|
}
|