package main import ( "github.com/urfave/cli" ) var ( imageSubCommands = []cli.Command{ buildCommand, historyCommand, importCommand, inspectCommand, loadCommand, lsImagesCommand, // pruneCommand, pullCommand, pushCommand, rmImageCommand, saveCommand, tagCommand, } imageDescription = "Manage images" imageCommand = cli.Command{ Name: "image", Usage: "image COMMAND", Description: imageDescription, ArgsUsage: "", Subcommands: imageSubCommands, UseShortOptionHandling: true, } )