github.com/lusis/distribution@v2.0.1+incompatible/cmd/dist/list.go (about)

     1  package main
     2  
     3  import "github.com/codegangsta/cli"
     4  
     5  var (
     6  	commandList = cli.Command{
     7  		Name:   "images",
     8  		Usage:  "List available images",
     9  		Action: imageList,
    10  	}
    11  )
    12  
    13  func imageList(c *cli.Context) {
    14  }