forked from TrueCloudLab/distribution
Basic skeleton for dist
binary
Signed-off-by: Arnaud Porterie <arnaud.porterie@docker.com>
This commit is contained in:
parent
5f863238c0
commit
168b51d402
4 changed files with 77 additions and 0 deletions
14
cmd/dist/list.go
vendored
Normal file
14
cmd/dist/list.go
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
package main
|
||||
|
||||
import "github.com/codegangsta/cli"
|
||||
|
||||
var (
|
||||
commandList = cli.Command{
|
||||
Name: "images",
|
||||
Usage: "List available images",
|
||||
Action: imageList,
|
||||
}
|
||||
)
|
||||
|
||||
func imageList(c *cli.Context) {
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue