2015-05-05 00:18:28 -04:00
|
|
|
package cli
|
|
|
|
|
2016-02-12 03:11:31 -05:00
|
|
|
// Command is the struct containing the command name and description
|
2015-10-08 08:46:21 -04:00
|
|
|
type Command struct {
|
|
|
|
Name string
|
|
|
|
Description string
|
|
|
|
}
|
|
|
|
|
2016-04-25 12:05:42 -04:00
|
|
|
// DockerCommandUsage lists the top level docker commands and their short usage
|
2016-06-23 11:09:49 -04:00
|
|
|
var DockerCommandUsage = []Command{}
|
2015-10-08 08:46:21 -04:00
|
|
|
|
|
|
|
// DockerCommands stores all the docker command
|
|
|
|
var DockerCommands = make(map[string]Command)
|
|
|
|
|
|
|
|
func init() {
|
2016-04-25 12:05:42 -04:00
|
|
|
for _, cmd := range DockerCommandUsage {
|
2015-10-08 08:46:21 -04:00
|
|
|
DockerCommands[cmd.Name] = cmd
|
|
|
|
}
|
|
|
|
}
|